Skip to content

Commit

Permalink
Encoding fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Gärtner committed Jul 15, 2017
1 parent 9a15064 commit c94ad41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions ORCSchlange/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
url="https://github.com/ScaDS/ORC-Schlange",
description="Create a nice static publishing websites from ORCIDs.",
Expand Down

0 comments on commit c94ad41

Please sign in to comment.