From ec08d4326f8efb54575fe7f9672e19c226532c00 Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Sun, 28 Jan 2007 01:58:57 -0500 Subject: [PATCH] Bug fix: CEO (main.py) still referenced an exception that changed name in 0.2 --- pylib/csc/apps/legacy/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylib/csc/apps/legacy/main.py b/pylib/csc/apps/legacy/main.py index f2c6387..e9a463e 100644 --- a/pylib/csc/apps/legacy/main.py +++ b/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: