VirtualMailManager/Handler.py
branchv0.6.x
changeset 192 0854fb9f3bc5
parent 191 db77501aeaed
child 196 65a3163bd113
equal deleted inserted replaced
191:db77501aeaed 192:0854fb9f3bc5
   561                         ERR.MAILDIR_PERM_MISMATCH, ERR.NO_SUCH_DIRECTORY]:
   561                         ERR.MAILDIR_PERM_MISMATCH, ERR.NO_SUCH_DIRECTORY]:
   562                     warning = _(u"""\
   562                     warning = _(u"""\
   563 The account has been successfully deleted from the database.
   563 The account has been successfully deleted from the database.
   564     But an error occurred while deleting the following directory:
   564     But an error occurred while deleting the following directory:
   565     ā€œ%(directory)sā€
   565     ā€œ%(directory)sā€
   566     Reason: %(reason)s""") %
   566     Reason: %(reason)s""") % \
   567                     {'directory': acc.getDir('home'), 'reason': e.msg()}
   567                     {'directory': acc.getDir('home'), 'reason': e.msg()}
   568                     self.__warnings.append(warning)
   568                     self.__warnings.append(warning)
   569                 else:
   569                 else:
   570                     raise
   570                     raise
   571 
   571