fixed docs typo

This commit is contained in:
alterNERDtive 2020-03-05 14:46:29 +01:00
parent 7ee4b28c59
commit adec36ded9
2 changed files with 3 additions and 3 deletions

View file

@ -161,7 +161,7 @@ optional arguments:
stations overall. stations overall.
--count [COUNT] how many stations to output. Defaults to 50. --count [COUNT] how many stations to output. Defaults to 50.
--systemlist outputs a list of systems to visit _only_, no station --systemlist outputs a list of systems to visit _only_, no station
names (for)easy system names c&p names (foreasy system names c&p)
``` ```
## Need Help / Want to Contribute? ## ## Need Help / Want to Contribute? ##

View file

@ -50,8 +50,8 @@ parser_oldstations.add_argument("--system", nargs="?",
parser_oldstations.add_argument("--count", nargs="?", type=int, default=50, parser_oldstations.add_argument("--count", nargs="?", type=int, default=50,
help="how many stations to output. Defaults to 50.") help="how many stations to output. Defaults to 50.")
parser_oldstations.add_argument("--systemlist", action='store_true', parser_oldstations.add_argument("--systemlist", action='store_true',
help="outputs a list of systems to visit _only_, no station names (for)" help="outputs a list of systems to visit _only_, no station names (for"
+ "easy system names c&p") + "easy system names c&p)")
argcomplete.autocomplete(parser) argcomplete.autocomplete(parser)
args = parser.parse_args() args = parser.parse_args()