summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-01-17 13:50:01 +0000
committerAsk Solem <ask@celeryproject.org>2013-01-17 13:50:01 +0000
commitdd0fe3a3a6a1bb50209e697d7bef91473661bee2 (patch)
tree051c6aca716911da80a482049aad4373c049c222 /setup.py
parent02cd13bc9eec102bf0752a9e4ab3fe7cae078cd8 (diff)
downloadkombu-dd0fe3a3a6a1bb50209e697d7bef91473661bee2.tar.gz
More pep8ify
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index d512407f..1adf5b09 100644
--- a/setup.py
+++ b/setup.py
@@ -88,8 +88,9 @@ for dirpath, dirnames, filenames in os.walk(src_dir):
if filename.endswith('.py'):
packages.append('.'.join(fullsplit(dirpath)))
else:
- data_files.append([dirpath, [os.path.join(dirpath, f) for f in
- filenames]])
+ data_files.append(
+ [dirpath, [os.path.join(dirpath, f) for f in filenames]],
+ )
if os.path.exists('README.rst'):
long_description = codecs.open('README.rst', 'r', 'utf-8').read()