Commit 9ff48239 authored by Łukasz Nowak's avatar Łukasz Nowak Committed by Łukasz Nowak

zc.buildout: Add missing serializer safe global

None is safe global to be unserialized.

/reviewed-on !18
parent 46d2dab2
...@@ -91,6 +91,7 @@ class BuildoutSerialiser(object): ...@@ -91,6 +91,7 @@ class BuildoutSerialiser(object):
'tuple': tuple, 'tuple': tuple,
'False': False, 'False': False,
'True': True, 'True': True,
'None': None,
}} }}
def loads(self, value): def loads(self, value):
......
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