From c94ad41622ddcea2bc25a59c5debcfe4c823d9c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Ga=CC=88rtner?= Date: Sat, 15 Jul 2017 08:18:06 +0200 Subject: [PATCH] Encoding fix --- ORCSchlange/__init__.py | 5 +++-- setup.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ORCSchlange/__init__.py b/ORCSchlange/__init__.py index 7353132..24d76fd 100644 --- a/ORCSchlange/__init__.py +++ b/ORCSchlange/__init__.py @@ -118,11 +118,12 @@ def add_adddb(add_dbs): """ add_dbs.add_argument('orchid', action="store", help="The new added ORCID.") add_dbs.add_argument('start', action="store", help="""The date after the ORCID data is - fetched in form "YYYY-MM-DD”.""") + fetched in form "YYYY-MM-DD".""") add_dbs.add_argument('stop', action="store", - help="The date until the ORCID data is fetched in form \"YYYY-MM-DD\”.", + help="The date until the ORCID data is fetched in form \"YYYY-MM-DD\".", nargs="?") add_dbs.set_defaults(func=lambda args: DbCommand(args).add()) + add_dbs.set_defaults(func=lambda args: DbCommand(args).add()) def add_conf(conf_db): diff --git a/setup.py b/setup.py index 441e076..d68ce46 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def read(fname): package_data={"ORCSchlange.command": "*.js"}, zip_safe=False, install_requires=['pybtex>=0.21', 'requests>=2.18.1'], - author="Fabian Gärtner", + author="Fabian Gaertner", author_email="fabian@bioinf.uni-leipzig.de", url="https://github.com/ScaDS/ORC-Schlange", description="Create a nice static publishing websites from ORCIDs.",