Skip to content

Commit

Permalink
Merge branch 'ascii_false' into 'master'
Browse files Browse the repository at this point in the history
new dump argument for esnure ascii false

See merge request !3
  • Loading branch information
Johan Forsberg committed May 24, 2017
2 parents a0e4e49 + 4a30c6b commit 8bc17ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dsconfig/dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def main():
attribute_properties=options.attribute_properties,
aliases=options.aliases, dservers=options.dservers,
subdevices=options.subdevices)
print json.dumps(dbdata, indent=4, sort_keys=True)
print json.dumps(dbdata, ensure_ascii=False, indent=4, sort_keys=True)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
setup(
# Package
name="python-dsconfig",
version="1.2.2",
version="1.2.3",
packages=['dsconfig', 'dsconfig.appending_dict'],
description="Library and utilities for Tango device configuration.",
# Requirements
Expand Down

0 comments on commit 8bc17ec

Please sign in to comment.