forked from pool/cloud-init
Robert Schweikert
daf356ec1b
+ Added cloud-init-fix-unicode-handling-binarydecode.patch - Fix dependencies, depends on oauthlib instead of oauth - Fix dataSourceOpenNebula.patch, missing closing paren (boo#998836) OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/cloud-init?expand=0&rev=46
12 lines
362 B
Diff
12 lines
362 B
Diff
--- cloudinit/util.py.orig
|
|
+++ cloudinit/util.py
|
|
@@ -154,7 +154,7 @@ def target_path(target, path=None):
|
|
|
|
def decode_binary(blob, encoding='utf-8'):
|
|
# Converts a binary type into a text type using given encoding.
|
|
- if isinstance(blob, six.text_type):
|
|
+ if isinstance(blob, six.string_types):
|
|
return blob
|
|
return blob.decode(encoding)
|
|
|