Commit fb1aafad authored by Jérome Perrin's avatar Jérome Perrin

slapos: fix SyntaxError: Non-ASCII character '\xc2' on py2

parent d26d1810
...@@ -197,7 +197,7 @@ class Recipe(object): ...@@ -197,7 +197,7 @@ class Recipe(object):
v6_add(ip) v6_add(ip)
# XXX: emit warning on unknown address type ? # XXX: emit warning on unknown address type ?
# XXX slapproxy is sending 'full_address_list' not 'full_ip_list' (like real slapos master) # XXX slapproxy is sending 'full_address_list' not 'full_ip_list' (like real slapos master)
# just pop this value for now. Remove this when slapproxy is fixed. # just pop this value for now. Remove this when slapproxy is fixed.
parameter_dict.pop('full_address_list', None) parameter_dict.pop('full_address_list', None)
...@@ -217,7 +217,7 @@ class Recipe(object): ...@@ -217,7 +217,7 @@ class Recipe(object):
# validate the parameters (only when using JsonSchema recipe) # validate the parameters (only when using JsonSchema recipe)
# after popping the custom values sent by slapos master # after popping the custom values sent by slapos master
# but before adding the value from .slapos-resources file # but before adding the value from .slapos-resources file
parameter_dict = self._validateParameterDict(options,parameter_dict) parameter_dict = self._validateParameterDict(options,parameter_dict)
options['ipv4'] = ipv4_set options['ipv4'] = ipv4_set
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment