[Checkins] SVN: zopyx.smartprintng.server/branches/bfg/zopyx/smartprintng/server/views.py return xmlrpclib.Fault() instead of raising it

Andreas Jung andreas at andreas-jung.com
Mon Jul 6 13:25:36 EDT 2009


Log message for revision 101653:
  return xmlrpclib.Fault() instead of raising it
  

Changed:
  U   zopyx.smartprintng.server/branches/bfg/zopyx/smartprintng/server/views.py

-=-
Modified: zopyx.smartprintng.server/branches/bfg/zopyx/smartprintng/server/views.py
===================================================================
--- zopyx.smartprintng.server/branches/bfg/zopyx/smartprintng/server/views.py	2009-07-06 17:22:03 UTC (rev 101652)
+++ zopyx.smartprintng.server/branches/bfg/zopyx/smartprintng/server/views.py	2009-07-06 17:25:36 UTC (rev 101653)
@@ -27,5 +27,5 @@
     except Exception, e:
         msg = 'Conversion failed (%s)' % e
         LOG.error(msg, exc_info=True)
-        raise xmlrpclib.Fault(123, msg)
+        return xmlrpclib.Fault(123, msg)
 



More information about the Checkins mailing list