[bugfix] string transformation of None values

This commit is contained in:
2017-08-02 11:02:24 +02:00
parent a5a3087283
commit d5645cf979
2 changed files with 11 additions and 1 deletions

View File

@@ -181,6 +181,11 @@ def fnConstructor(s):
fn = '_' + fn
return fn
def real_None(value):
if value == 'None':
return None
else:
return value
def four_digits(year):
"""