Commit e5461789 authored by Francesco Poldi's avatar Francesco Poldi

Fix for strange div #417

parent af109154
......@@ -10,7 +10,9 @@ def inf(ur, _type):
logme.debug(__name__+':inf')
try:
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")
except Exception as 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