Commit 36d21b652c9fe0df5984a06066ad124432958bfe
1 parent
35b4087d
Add a piece of code that was missing in #22
This was supposed to be in the pull request, but was not included by mistake.
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -31,7 +31,7 @@ interpreter = python_interpreter | @@ -31,7 +31,7 @@ interpreter = python_interpreter | ||
31 | initialization = | 31 | initialization = |
32 | from munch import Munch | 32 | from munch import Munch |
33 | Munch.__str__ = lambda self: Munch.toYAML(self, allow_unicode=True, | 33 | Munch.__str__ = lambda self: Munch.toYAML(self, allow_unicode=True, |
34 | - default_flow_style=False) | 34 | + default_flow_style=False).decode('utf-8') |
35 | Munch.__repr__ = Munch.__str__ | 35 | Munch.__repr__ = Munch.__str__ |
36 | 36 | ||
37 | [remotes] | 37 | [remotes] |
Please
register
or
login
to post a comment