Don't crash if the date format not only consists of ASCII signs.
Added also the u stringprefix to translatable strings where it was missing.
#!/usr/bin/env python# -*- coding: utf-8 -*-# Copyright 2007 - 2009, VEB IT# See COPYING for distribution information.importosfromdistutils.coreimportsetupVERSION='0.5.1'long_description="""vmm, a virtual mail manager, is a command line tool foradministrators/postmasters to manage (alias-)domains, accounts,aliases and relocated users.It is designed for Dovecot and Postfix with a PostgreSQL backend."""# remove existing MANIFESTifos.path.exists('MANIFEST'):os.remove('MANIFEST')setup(name='VirtualMailManager',version=VERSION,description='Tool to manage mail domains/accounts/aliases for Dovecot and Postfix',long_description=long_description,packages=['VirtualMailManager','VirtualMailManager.ext','VirtualMailManager.constants'],author='Pascal Volk',author_email='p.volk@veb-it.de',license='BSD License',url='http://vmm.localdomain.org/',download_url='http://sf.net/projects/vmm/files/',platforms=['freebsd7','linux2','openbsd4'],classifiers=['Development Status :: 4 - Beta','Development Status :: 5 - Production/Stable','Environment :: Console','Intended Audience :: System Administrators','License :: OSI Approved :: BSD License','Natural Language :: English','Natural Language :: German','Operating System :: POSIX','Operating System :: POSIX :: BSD','Operating System :: POSIX :: Linux','Operating System :: POSIX :: Other','Programming Language :: Python','Topic :: Communications :: Email','Topic :: System :: Systems Administration','Topic :: Utilities'],requires=['pyPgSQL'])