Skip to content

Commit

Permalink
Fixed separator in JSON prettify.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bystroushaak committed Feb 3, 2017
1 parent 40e53e3 commit 9af2a05
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

0.4.3
-----
- Fixed separator in JSON prettify.

0.4.2
-----
- Fixed #8 - deprecation warning when accessing the Exception.message property.
Expand Down
2 changes: 1 addition & 1 deletion src/bottle_rest/bottle_rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def pretty_dump_wrapper(*args, **kwargs):

# sort_keys=True,
indent=4,
separators=(', ', ': ')
separators=(',', ': ')
)

return pretty_dump_wrapper
Expand Down

0 comments on commit 9af2a05

Please sign in to comment.