server/cwzmq.py
changeset 8695 358d8bed9626
parent 8670 f02139297beb
child 8982 6bc1c1b4473a
--- a/server/cwzmq.py	Thu Feb 14 15:39:23 2013 +0100
+++ b/server/cwzmq.py	Thu Feb 14 15:38:25 2013 +0100
@@ -221,7 +221,7 @@
             for cmd in cmds:
                 result = self.process_cmd(cmd)
                 self.send_data(result)
-        except Exception, exc:
+        except Exception as exc:
             traceback.print_exc()
             self.send_data(exc)
 
@@ -235,7 +235,7 @@
             self.loop.add_callback(self.loop.stop)
             self.stream.on_recv(None)
             self.stream.close()
-        except Exception, e:
+        except Exception as e:
             print e
             pass
         if shutdown_repo and not self.repo.shutting_down: