mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Make help message readable for people without a UTF-8 terminal.
This commit is contained in:
parent
6a8569b722
commit
398545a77f
1 changed files with 1 additions and 1 deletions
|
@ -187,6 +187,6 @@ def command_help():
|
||||||
csvexport {uri} [dir] Export data from the database given by the URI
|
csvexport {uri} [dir] Export data from the database given by the URI
|
||||||
to a set of CSVs.
|
to a set of CSVs.
|
||||||
Directory defaults to cwd.
|
Directory defaults to cwd.
|
||||||
"""
|
""".encode(sys.getdefaultencoding(), 'replace')
|
||||||
|
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
Loading…
Reference in a new issue