Remove spaces around keyword args.
authorAdam Sampson <ats@offog.org>
Tue, 26 Jul 2016 12:45:03 +0000 (13:45 +0100)
committerAdam Sampson <ats@offog.org>
Tue, 26 Jul 2016 12:45:03 +0000 (13:45 +0100)
pylint warns about this.

setup.py

index 0ee248dec3863b35bbe6fecb1648be5f5400e89e..f276cf4872d4fcfc0cac7334f3405b5af500d822 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -7,16 +7,16 @@ if sys.version_info < (2, 6) or sys.version_info >= (3,):
        print("rawdog requires Python 2.6 or later, and not Python 3.")
        sys.exit(1)
 
-setup(name = "rawdog",
-       version = "2.22rc1",
-       description = "RSS Aggregator Without Delusions Of Grandeur",
-       author = "Adam Sampson",
-       author_email = "ats@offog.org",
-       url = "http://offog.org/code/rawdog/",
-       scripts = ['rawdog'],
-       data_files = [('share/man/man1', ['rawdog.1'])],
-       packages = ['rawdoglib'],
-       classifiers = [
+setup(name="rawdog",
+       version="2.22rc1",
+       description="RSS Aggregator Without Delusions Of Grandeur",
+       author="Adam Sampson",
+       author_email="ats@offog.org",
+       url="http://offog.org/code/rawdog/",
+       scripts=['rawdog'],
+       data_files=[('share/man/man1', ['rawdog.1'])],
+       packages=['rawdoglib'],
+       classifiers=[
                "Development Status :: 5 - Production/Stable",
                "Environment :: Console",
                "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",