]> git.llucax.com Git - software/pymin.git/commitdiff
Add missing \n to Internal server error.
authorLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 28 Sep 2007 19:36:17 +0000 (16:36 -0300)
committerLeandro Lucarella <llucarella@integratech.com.ar>
Fri, 28 Sep 2007 19:36:17 +0000 (16:36 -0300)
pymindaemon.py

index b7e56e4cbf4c06cd7c6736aac8df457c8b13ad27..ec15356a7ab89507b5be77312088d709a05c2200 100644 (file)
@@ -70,7 +70,7 @@ class PyminDaemon(eventloop.EventLoop):
             response = u'ERROR '
         except Exception, e:
             import traceback
             response = u'ERROR '
         except Exception, e:
             import traceback
-            result = u'Internal server error'
+            result = u'Internal server error\n'
             traceback.print_exc() # TODO logging!
             response = u'ERROR '
         if result is None:
             traceback.print_exc() # TODO logging!
             response = u'ERROR '
         if result is None: