Bug fix: CEO (main.py) still referenced an exception that changed name in 0.2

pull/5/head
Michael Spang 16 years ago
parent 2343c0b08b
commit ec08d4326f
  1. 2
      pylib/csc/apps/legacy/main.py

@ -294,7 +294,7 @@ def action_create_account(wnd):
try:
if not accounts.connected(): accounts.connect()
accounts.create_member(userid, password, member['name'], memberid)
except accounts.AccountExists, e:
except accounts.NameConflict, e:
msgbox(wnd, str(e))
return False
except accounts.NoAvailableIDs, e:

Loading…
Cancel
Save