Fix signature parsing

This commit is contained in:
rubenwardy 2020-12-05 00:27:14 +00:00
parent 5f7c0a3b24
commit 9b0ce41fd7
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ def __extract_signature(soup):
if len(res) != 1:
return None
else:
return res[0]
return str(res[0])
def getProfileURL(url, username):