diff options
author | jaypipes@gmail.com <> | 2011-02-21 13:10:45 -0500 |
---|---|---|
committer | jaypipes@gmail.com <> | 2011-02-21 13:10:45 -0500 |
commit | 8b30a903a4d2c5c6ffe44e58b8531ddc889492c0 (patch) | |
tree | 428964117677241bec4411bf8cf1dcb2552d3d61 /setup.py | |
parent | 6facb35c26b2c90d4ba7a34f3eccd10de2fb7207 (diff) | |
download | nova-8b30a903a4d2c5c6ffe44e58b8531ddc889492c0.tar.gz nova-8b30a903a4d2c5c6ffe44e58b8531ddc889492c0.tar.xz nova-8b30a903a4d2c5c6ffe44e58b8531ddc889492c0.zip |
PEP8 errors and remove check in authors file for nova-core, since nova-core owns the translation export branch
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -26,9 +26,11 @@ from setuptools.command.sdist import sdist try: import DistUtilsExtra.auto except ImportError: - print >> sys.stderr, 'To build nova you need https://launchpad.net/python-distutils-extra' + print >> sys.stderr, 'To build nova you need '\ + 'https://launchpad.net/python-distutils-extra' sys.exit(1) -assert DistUtilsExtra.auto.__version__ >= '2.18', 'needs DistUtilsExtra.auto >= 2.18' +assert DistUtilsExtra.auto.__version__ >= '2.18',\ + 'needs DistUtilsExtra.auto >= 2.18' from nova.utils import parse_mailmap, str_dict_replace |