Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Caillat Michel
yafits
Commits
1bcda087
Commit
1bcda087
authored
Sep 10, 2019
by
Caillat Michel
Browse files
Fixed a bug in the conversion string -> int
parent
2953a4d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
yafitss/serverWsgi.py
View file @
1bcda087
...
...
@@ -117,7 +117,7 @@ def getFloatValue(value):
def
getIntValue
(
value
):
if
value
is
not
None
and
str
(
value
)
!=
"null"
:
return
int
(
value
)
return
int
(
float
(
value
)
)
return
None
def
getBoolValue
(
value
):
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment