1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Change str() to unicode() to avoid encoding problems

This commit is contained in:
Ross McFarland
2018-02-24 09:19:23 -08:00
parent fad5bc32c2
commit 9f2b65ec83
8 changed files with 26 additions and 24 deletions

View File

@@ -62,7 +62,7 @@ class BaseProvider(BaseSource):
extra = self._extra_changes(existing, changes)
if extra:
self.log.info('plan: extra changes\n %s', '\n '
.join([str(c) for c in extra]))
.join([unicode(c) for c in extra]))
changes += extra
if changes: