From a4827c0b81c31cbbc087bf2b6154707137900520 Mon Sep 17 00:00:00 2001 From: Jon Stanley Date: Mon, 13 Oct 2008 20:20:35 -0400 Subject: style cleanup --- bugzilla/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bugzilla/base.py') diff --git a/bugzilla/base.py b/bugzilla/base.py index 7ae6086..4069ed9 100644 --- a/bugzilla/base.py +++ b/bugzilla/base.py @@ -680,13 +680,13 @@ class BugzillaBase(object): groups: list of groups to be added to (i.e. ['fedora_contrib']) ''' self._updateperms(user,action,groups) - def adduser(self,email,name): + def adduser(self,user,name): '''A method to create a user in Bugzilla. Takes the following: email: The email address of the user to create name: The full name of the user to create ''' - self._adduser(email,name) + self._adduser(user,name) class CookieResponse: '''Fake HTTPResponse object that we can fill with headers we got elsewhere. -- cgit