From 3d45a9e44fa23795407c1511845c8ee3bcb771d2 Mon Sep 17 00:00:00 2001 From: Tiberiu Ana Date: Mon, 14 May 2012 00:57:04 +0800 Subject: [PATCH] Removed print statement from Response.append because it breaks CGI apps. --- twilio/twiml.py | 1 - 1 file changed, 1 deletion(-) diff --git a/twilio/twiml.py b/twilio/twiml.py index 3815403f79..ba7d028541 100644 --- a/twilio/twiml.py +++ b/twilio/twiml.py @@ -81,7 +81,6 @@ def xml(self): return el def append(self, verb): - print self.nestables if not self.nestables or verb.name not in self.nestables: raise TwimlException("%s is not nestable inside %s" % \ (verb.name, self.name))