diff options
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | yamlish.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ def read(fname): setup( name='yamlish', - version="0.15", + version="0.15.1", description='Python implementation of YAMLish', author='Matěj Cepl', author_email='mcepl@redhat.com', @@ -190,7 +190,7 @@ def load(source, ignore_wrong_characters=False): except UnicodeDecodeError: log.debug('in ignore_wrong_characters = %s', ignore_wrong_characters) if ignore_wrong_characters: - inobj += line.decode('utf8', errors='ignore') + '\n' + inobj += line.decode('utf8', 'ignore') + '\n' else: raise log.debug('restarting load with inobj as string') |