Skip to content

Commit

Permalink
Updated qb_datetime_utc_offset_format to support python 2.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
ej2 committed Jul 26, 2016
1 parent 2f1ed5e commit bb36820
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changelog
========

* 0.5.1 (July 25, 2016)
* Updated qb_datetime_utc_offset_format to support python 2.6.

* 0.5.0 (July 25, 2016)
* Added ability to query current user.
* Added support to reconnect an account.
Expand Down
2 changes: 1 addition & 1 deletion quickbooks/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ def qb_datetime_utc_offset_format(input_date, utc_offset):
:param utc_offset: Formatted +/-HH:MM example: -08:00
:return:
"""
return "{}{}".format(qb_datetime_format(input_date), utc_offset)
return "{0}{1}".format(qb_datetime_format(input_date), utc_offset)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(*parts):
return fp.read()


VERSION = (0, 5, 0)
VERSION = (0, 5, 1)
version = '.'.join(map(str, VERSION))

setup(
Expand Down

0 comments on commit bb36820

Please sign in to comment.