From 6623b7cf412721e06bbc4ca0ab94fa5d63ba95eb Mon Sep 17 00:00:00 2001 From: Scinawa Date: Mon, 16 Nov 2015 20:20:04 +0100 Subject: [PATCH] correct line indentation reulting in syntax error --- asterisk/agi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asterisk/agi.py b/asterisk/agi.py index aa0ba35..aceb562 100644 --- a/asterisk/agi.py +++ b/asterisk/agi.py @@ -113,7 +113,7 @@ class AGI: sys.stderr.write('\n') def _quote(self, string): - """ provides double quotes to string, converts int/bool to string """ + """ provides double quotes to string, converts int/bool to string """ if isinstance(string, int): string = str(string) if isinstance(string, float):