# HG changeset patch
# User Pascal Volk <neverseen@users.sourceforge.net>
# Date 1269163560 0
# Node ID 3c766114d0b965615d40d0053fd8181bd5689409
# Parent  eefbe052a1355dc0660d205ed749780b68907afb
vmm: minimal cleanups.

diff -r eefbe052a135 -r 3c766114d0b9 vmm
--- a/vmm	Wed Mar 03 20:54:18 2010 +0000
+++ b/vmm	Sun Mar 21 09:26:00 2010 +0000
@@ -381,18 +381,18 @@
         usage(EXIT.MISSING_ARGS, _(u'Missing alias address'))
     try:
         _printAliases(argv[2].lower(), vmm.aliasInfo(argv[2].lower()))
-    except VMME.VMMAliasException, e:
+    except VMME.VMMException, e:
         if e.code() is ERR.ACCOUNT_EXISTS:
             w_std(plan_a_b % {'subcommand': u'userinfo',
-                'object': argv[2].lower()})
+                              'object': argv[2].lower()})
             argv[1] = u'ui' # necessary manipulation to get the order
             user_info()
         elif e.code() is ERR.RELOCATED_EXISTS:
             w_std(plan_a_b % {'subcommand': u'relocatedinfo',
-                'object': argv[2].lower()})
+                              'object': argv[2].lower()})
             relocated_info()
         else:
-            raise e
+            raise
 
 def alias_delete():
     if argc < 3: