diff --git a/pyzilla.py b/pyzilla.py index fc8e8e4..9d4e240 100644 --- a/pyzilla.py +++ b/pyzilla.py @@ -95,10 +95,10 @@ def info(self): class BugZilla(xmlrpclib.Server): def __init__(self, url, verbose = False, cookiefile = None, user_agent=None): - xmlrpclib.Server.__init__(self, url, CookieAuthXMLRPCTransport(), - verbose = verbose, - cookiefile = cookiefile, - user_agent = user_agent) + xmlrpclib.Server.__init__(self, url, + CookieAuthXMLRPCTransport(cookiefile = cookiefile, + user_agent = user_agent), + verbose = verbose) def login(self, username, password): self.User.login (dict(login=username,