Commit 071b9708 authored by Francesco Poldi's avatar Francesco Poldi

Fix for strange div #417

parent d44b73ab
...@@ -10,7 +10,9 @@ def inf(ur, _type): ...@@ -10,7 +10,9 @@ def inf(ur, _type):
logme.debug(__name__+':inf') logme.debug(__name__+':inf')
try: try:
group = ur.find("div", "user-actions btn-group not-following ") group = ur.find("div", "user-actions btn-group not-following ")
if group == None : if group == None:
group = ur.find("div", "user-actions btn-group not-following")
if group == None:
group = ur.find("div", "user-actions btn-group not-following protected") group = ur.find("div", "user-actions btn-group not-following protected")
except Exception as e: except Exception as e:
print("Error: " + str(e)) print("Error: " + str(e))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment