diff --git a/FAAPI/FAAPI.py b/FAAPI/FAAPI.py index a9dc377..e074111 100644 --- a/FAAPI/FAAPI.py +++ b/FAAPI/FAAPI.py @@ -243,6 +243,7 @@ class Submission: # Parse content from non-hidden comments comment.author = self._api.get_user(comment_element.select('.comment_username')[0].text.strip()) comment.timestamp = datetime.fromtimestamp(int(comment_element.get('data-timestamp'))) # FIXME: Needs to account for timezone difference since these are server-local epochs. Seems to be hosted in New York's TZ + comment.content = comment_element.select('.comment_text')[0].text.strip() self._comments.append(comment) diff --git a/setup.py b/setup.py index b0a470d..e51197a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='FAAPI', - version='0.6.3', + version='0.6.4', packages=find_packages(), url='https://tem.party/gitea/tom/FAAPI', license='WTFPL',