python3 agi _quote
parent
4f303e668e
commit
d81fa0ea5f
|
@ -129,7 +129,10 @@ class AGI:
|
||||||
string = str(string)
|
string = str(string)
|
||||||
if isinstance(string, float):
|
if isinstance(string, float):
|
||||||
string = str(string)
|
string = str(string)
|
||||||
return ''.join(['"', string.encode('utf8', 'ignore'), '"'])
|
if PY3:
|
||||||
|
return ''.join(['"', string, '"'])
|
||||||
|
else:
|
||||||
|
return ''.join(['"', string.encode('utf8', 'ignore'), '"'])
|
||||||
|
|
||||||
def _handle_sighup(self, signum, frame):
|
def _handle_sighup(self, signum, frame):
|
||||||
"""Handle the SIGHUP signal"""
|
"""Handle the SIGHUP signal"""
|
||||||
|
|
Loading…
Reference in New Issue