bugfix exception in tiny_socket

bzr revid: ced-d85e6510f6667648092a15bb76a8a28316517059
This commit is contained in:
ced 2007-08-10 06:13:06 +00:00
parent 8ace173431
commit 1101ed851e
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class Myexception(Exception):
def __init__(self, faultCode, faultString):
self.faultCode = faultCode
self.faultString = faultString
super(Myexception, self).__init__(faultCode, faultString)
self.args = (faultCode, faultString)
class mysocket:
def __init__(self, sock=None):