Commit 128d07e9 authored by Aurel's avatar Aurel

fixup! c06cbf38 we were not checking value...

fixup! c06cbf38 we were not checking value before in case it is optional
parent 19be50b3
Pipeline #21514 failed with stage
in 0 seconds
......@@ -48,7 +48,7 @@ if 1: # For easy diff with original (ZSQLMethods 3.14)
else:
v = str(int(v))
except Exception:
if not v and 'optional' in args and args['optional']:
if 'optional' in args and args['optional']:
return 'null'
err = 'Invalid integer value for <em>%s</em>' % name
raise ValueError(err)
......@@ -63,7 +63,7 @@ if 1: # For easy diff with original (ZSQLMethods 3.14)
# floats (on python2 only)
v = repr(float(v))
except Exception:
if not v and 'optional' in args and args['optional']:
if 'optional' in args and args['optional']:
return 'null'
err = 'Invalid floating-point value for <em>%s</em>' % name
raise ValueError(err)
......@@ -85,7 +85,7 @@ if 1: # For easy diff with original (ZSQLMethods 3.14)
else:
if not isinstance(v, (str, StringTypes)):
v = str(v)
if not v and t == 'nb':
if t == 'nb':
if 'optional' in args and args['optional']:
return 'null'
else:
......
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