removed BoolType

This commit is contained in:
Emmanuel Viennet 2021-07-11 18:27:02 +02:00
parent 83ee570df9
commit 37839aadd5
1 changed files with 2 additions and 4 deletions

View File

@ -6,11 +6,9 @@
E. Viennet 2005 - 2008
v 1.2
v 1.3 (python3)
"""
from types import BooleanType, UnicodeType
def TrivialFormulator(
form_url,
@ -740,7 +738,7 @@ def dict2js(d):
r = []
for k in d:
v = d[k]
if type(v) == BooleanType:
if isinstance(v, bool):
if v:
v = "true"
else: