VirtualMailManager/Alias.py
changeset 147 e3fd0b67ae50
parent 146 a08d78344706
child 155 eb866ebb9f2e
--- a/VirtualMailManager/Alias.py	Mon Sep 07 21:40:36 2009 +0000
+++ b/VirtualMailManager/Alias.py	Tue Sep 08 02:41:08 2009 +0000
@@ -33,12 +33,10 @@
         self._setAddr()
         if not self._dest is None:
             self._exists()
-        if VMM.VirtualMailManager.accountExists(self._dbh,
-                self._addr):
+        if VMM.VirtualMailManager.accountExists(self._dbh, self._addr):
             raise VMMAE(_(u"There is already an account with address ā€œ%sā€.") %\
                     self._addr, ERR.ACCOUNT_EXISTS)
-        if VMM.VirtualMailManager.relocatedExists(self._dbh,
-                self._addr):
+        if VMM.VirtualMailManager.relocatedExists(self._dbh, self._addr):
             raise VMMAE(
               _(u"There is already a relocated user with the address ā€œ%sā€.") %\
                     self._addr, ERR.RELOCATED_EXISTS)