Merge pull request #221 from zen-tools/master
fix a typo in __json_truefalse_parse function
This commit is contained in:
commit
243d7a2c55
S'han modificat 1 arxius amb 1 adicions i 1 eliminacions
|
@ -3230,7 +3230,7 @@ class Mastodon:
|
||||||
if (key in json_object and isinstance(json_object[key], six.text_type)):
|
if (key in json_object and isinstance(json_object[key], six.text_type)):
|
||||||
if json_object[key].lower() == 'true':
|
if json_object[key].lower() == 'true':
|
||||||
json_object[key] = True
|
json_object[key] = True
|
||||||
if json_object[key].lower() == 'False':
|
if json_object[key].lower() == 'false':
|
||||||
json_object[key] = False
|
json_object[key] = False
|
||||||
return json_object
|
return json_object
|
||||||
|
|
||||||
|
|
Loading…
Referencia en una nova incidència