From 6b2c4dac7b92d9a5812eb010699f352c7fd15a56 Mon Sep 17 00:00:00 2001 From: TuxPowered Date: Sat, 14 Nov 2015 13:13:57 -0800 Subject: [PATCH] Convert Float to string Corrected where float values passed to _quote need to be converted to string to support .encode() --- asterisk/agi.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/asterisk/agi.py b/asterisk/agi.py index d1dc39a..aa0ba35 100644 --- a/asterisk/agi.py +++ b/asterisk/agi.py @@ -116,6 +116,8 @@ class AGI: """ provides double quotes to string, converts int/bool to string """ if isinstance(string, int): string = str(string) + if isinstance(string, float): + string = str(string) return ''.join(['"', string.encode('ascii', 'ignore'), '"']) def _handle_sighup(self, signum, frame):