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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user