From 315997c1e5f845bf6ef3912819237d6685c803a6 Mon Sep 17 00:00:00 2001 From: "Christian T. Jacobs" Date: Sat, 1 Apr 2017 21:36:52 +0100 Subject: [PATCH] Use " not ' in setup.py --- pyqso/logbook.py | 2 +- setup.py | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pyqso/logbook.py b/pyqso/logbook.py index 60fb6bb..00eeae4 100644 --- a/pyqso/logbook.py +++ b/pyqso/logbook.py @@ -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...") diff --git a/setup.py b/setup.py index 5be3c7d..a07693b 100644 --- a/setup.py +++ b/setup.py @@ -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", ] )