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):
'tuple': tuple,
'False': False,
'True': True,
'None': None,
}}
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