Make echo application the default dialplan
[ipypbx] / src / ipypbx / http.py
index 4de39d5..cc022cc 100644 (file)
@@ -126,7 +126,6 @@ class HttpRequestParser(object):
         """
         for state in self.HTTP_STATES:
             if getattr(self, 'HTTP_%s' % state) == self.state:
-                print self.state, line
                 getattr(self, 'handle%s' % state.title())(line)
                 break
         else: