Use " not ' in setup.py

pull/61/head
Christian T. Jacobs 2017-04-01 21:36:52 +01:00
rodzic 8a07c26fec
commit 315997c1e5
2 zmienionych plików z 15 dodań i 15 usunięć

Wyświetl plik

@ -139,7 +139,7 @@ class Logbook:
self.logs.append(l)
except (sqlite.Error, IndexError) as e:
logging.exception(e)
error(parent=self.application.window, message="Oops! Something went wrong when trying to retrieve the logs from the logbook. Perhaps the logbook file is encrypted, corrupted, or in the wrong format?")
error(parent=self.application.window, message="Something went wrong when trying to retrieve the logs from the logbook. Perhaps the logbook file is encrypted, corrupted, or in the wrong format?")
return
logging.debug("All logs retrieved successfully. Now attempting to render them all in the Gtk.Notebook...")

Wyświetl plik

@ -19,22 +19,22 @@
from distutils.core import setup
setup(name='PyQSO',
version='1.0.0',
description='A contact logging tool for amateur radio operators.',
author='Christian Thomas Jacobs',
author_email='christian@christianjacobs.uk',
url='https://github.com/ctjacobs/pyqso',
packages=['pyqso'],
package_dir={'pyqso': 'pyqso'},
setup(name="PyQSO",
version="1.0.0",
description="A contact logging tool for amateur radio operators.",
author="Christian Thomas Jacobs",
author_email="christian@christianjacobs.uk",
url="https://github.com/ctjacobs/pyqso",
packages=["pyqso"],
package_dir={"pyqso": "pyqso"},
scripts=["bin/pyqso"],
data_files=[("icons", ["icons/log_64x64.png"])],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Ham Radio',
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Ham Radio",
]
)