diff -r 072de50834f9 -r 70dafbaf21af iro/error.py --- a/iro/error.py Sun Mar 11 16:37:49 2012 +0100 +++ b/iro/error.py Sun Mar 11 16:38:37 2012 +0100 @@ -9,7 +9,7 @@ "msg":self.msg, } def __str__(self): - return "%i:%s"%(self.code,self.msg) + return "%i: %s"%(self.code,self.msg) class UserNotFound(InterfaceException): def __init__(self): @@ -38,7 +38,7 @@ "msg":self.msg, } def __str__(self): - return "%i:%s"%(self.code,self.msg) + return "%i: %s"%(self.code,self.msg) class InvalidTel(ValidateException): def __init__(self, number,field=None):