Skip to content

Commit

Permalink
Merge pull request #241 from recurly/bump_2_8_3
Browse files Browse the repository at this point in the history
Bump 2.8.3
  • Loading branch information
bhelx committed May 16, 2018
2 parents 53a61a9 + 832c326 commit 6a556f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased
#
## Version 2.8.3 – May 15th, 2018 ##

- Implement API version 2.12 changes

## Version 2.8.0 – April 5th, 2018 ##

- Implement API version 2.11 changes
Expand Down
7 changes: 3 additions & 4 deletions recurly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""

__version__ = '2.8.1'
__version__ = '2.8.3'
__python_version__ = '.'.join(map(str, sys.version_info[:3]))

cached_rate_limits = {
Expand Down Expand Up @@ -922,10 +922,9 @@ def pending(self):
but does not run any transactions.
Returns:
InvoiceCollection: The authorized collection of invoices
InvoiceCollection: The pending collection of invoices
"""
url = recurly.base_uri() + self.collection_path + '/pending'
return self.__invoice(url)
return self.__invoice(self.collection_path + '/pending')

def __invoice(self, url):
# We must null out currency in subscriptions and adjustments
Expand Down

0 comments on commit 6a556f0

Please sign in to comment.