--- a/_exceptions.py Thu Feb 14 15:39:23 2013 +0100
+++ b/_exceptions.py Thu Feb 14 15:38:25 2013 +0100
@@ -100,7 +100,7 @@
if self.args:
return ' '.join(self.args)
return self.msg
- except Exception, ex:
+ except Exception as ex:
return str(ex)
class Forbidden(SecurityError):