diff --git a/FAAPI/FAAPI.py b/FAAPI/FAAPI.py index 7386ea7..cc3cf65 100644 --- a/FAAPI/FAAPI.py +++ b/FAAPI/FAAPI.py @@ -398,6 +398,9 @@ class User: except IndexError as e: # Failed to get the description script, don't do anything about it and leave the dict as-is pass + except AttributeError as e: + # The description script isn't what we expected + pass # Get all the submissions on this page for item in soup.select('.gallery figure'): diff --git a/setup.py b/setup.py index 7f78605..0fe3d23 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='FAAPI', - version='0.6.5', + version='0.6.6', packages=find_packages(), url='https://tem.party/gitea/tom/FAAPI', license='WTFPL',