Skip to content

Commit

Permalink
Version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
bboe committed Jan 23, 2015
1 parent 47a7322 commit a4e858e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ formatted links that link to the relevant place in the code overview.
.. begin_changelog_body
Unreleased
----------
PRAW 2.1.20
-----------
* **[BUGFIX]** Attempting to lazyload an attribute of a comment that has been
removed will explicitly raise a :meth:`praw.errors.InvalidComment`
exception, rather than an ``IndexError`` (issue #339).
Expand All @@ -46,6 +46,7 @@ Unreleased
:class:`praw.objects.Redditor`, and :class:`praw.objects.Submission` are now
gildable.
* **[FEATURE]** :class:`praw.objects.Comment` is now saveable.
* **[REDDIT]** Handle upstream change in reddit's OAuth2 scope parsing.

PRAW 2.1.19
-----------
Expand Down
2 changes: 1 addition & 1 deletion praw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
from warnings import warn_explicit


__version__ = '2.1.19'
__version__ = '2.1.20'

if os.environ.get('SERVER_SOFTWARE') is not None:
# Google App Engine information
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ def test_all_comments(self):
c_len = len(self.submission.comments)
flat = helpers.flatten_tree(self.submission.comments)
continue_items = [x for x in flat if isinstance(x, MoreComments) and
x.count == 0]
x.count == 0]
self.assertTrue(continue_items)
cf_len = len(flat)
saved = self.submission.replace_more_comments(threshold=2)
Expand Down

0 comments on commit a4e858e

Please sign in to comment.