mirror of https://gitlab.com/bashrc2/epicyon
Variable name
parent
19ae236665
commit
b48080dad2
|
@ -68,7 +68,7 @@ def getMentionsFromHtml(htmlText: str,matchStr="<span class=\"h-card\"><a href=\
|
||||||
mentions=[]
|
mentions=[]
|
||||||
if matchStr not in htmlText:
|
if matchStr not in htmlText:
|
||||||
return mentions
|
return mentions
|
||||||
mentionsList=htmlStr.split(matchStr)
|
mentionsList=htmlText.split(matchStr)
|
||||||
for mentionStr in mentionsList:
|
for mentionStr in mentionsList:
|
||||||
if '"' not in mentionStr:
|
if '"' not in mentionStr:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue