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

This commit is contained in:
Michael Spang 2007-01-28 01:58:57 -05:00
parent 2343c0b08b
commit ec08d4326f
1 changed files with 1 additions and 1 deletions

View File

@ -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: