Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
csu committed Aug 10, 2014
1 parent 0aa4666 commit 3de4702
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
v0.1.4, 26 July 2014 -- Small bugfix to review requests.
v0.1.3, 26 July 2014 -- Added review requests to activity.
v0.1.2, 26 July 2014 -- Fixed to work with new Quora UI.
v0.1.1, 26 July 2014 -- Readme.
Expand Down
2 changes: 1 addition & 1 deletion quora/pyquora.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def get_activity_keys():
return POSSIBLE_FEED_KEYS

class Activity:
def __init__(self, upvotes=[], user_follows=[], question_follows=[], answers=[], questions=[]):
def __init__(self, upvotes=[], user_follows=[], question_follows=[], answers=[], questions=[], review_requests=[]):
self.upvotes = upvotes
self.user_follows = user_follows
self.question_follows = question_follows
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='quora',
version='0.1.3',
version='0.1.4',
description='Fetches and parses data from Quora.',
author='Christopher Su',
author_email='[email protected]',
Expand Down

0 comments on commit 3de4702

Please sign in to comment.