Remove remaining bits of uid check

This commit is contained in:
David Bartley 2007-12-12 03:33:09 -05:00
parent 2d7801864f
commit ccfcdbb3cf
2 changed files with 2 additions and 5 deletions

View File

@ -54,9 +54,6 @@ class IntroPage(WizardPanel):
return False
class InfoPage(WizardPanel):
def __init__(self, state, uid):
state['uid'] = uid
WizardPanel.__init__(self, state)
def init_widgets(self):
self.group = WordEdit("Club or Group: ")
self.widgets = [
@ -73,7 +70,7 @@ class InfoPage(WizardPanel):
"group" : group_name,
"groups" : [group],
}
group_members((data, self.state['uid']))
group_members(data)
class ChangeMember(WizardPanel):
def __init__(self, state, data):

View File

@ -99,7 +99,7 @@ def new_club(*args, **kwargs):
def manage_group(*args, **kwargs):
push_wizard("Manage Club or Group Members", [
groups.IntroPage,
(groups.InfoPage, ui.uid),
groups.InfoPage,
], (60, 15))
def renew_member(*args, **kwargs):