diff options
| author | Ask Solem <ask@celeryproject.org> | 2013-01-17 13:50:01 +0000 |
|---|---|---|
| committer | Ask Solem <ask@celeryproject.org> | 2013-01-17 13:50:01 +0000 |
| commit | dd0fe3a3a6a1bb50209e697d7bef91473661bee2 (patch) | |
| tree | 051c6aca716911da80a482049aad4373c049c222 /setup.py | |
| parent | 02cd13bc9eec102bf0752a9e4ab3fe7cae078cd8 (diff) | |
| download | kombu-dd0fe3a3a6a1bb50209e697d7bef91473661bee2.tar.gz | |
More pep8ify
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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() |
