From 09d528b7d547f89b5eefce7aa0b490030cf82e2b Mon Sep 17 00:00:00 2001 From: alterNERDtive Date: Tue, 22 Oct 2019 01:33:35 +0200 Subject: [PATCH] =?UTF-8?q?typo=20corrected:=20exti=20=E2=86=92=20exit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- explorationtools.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7600a5b..0b7ce4e 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ subcommands: bodycount Returns the number of bodies in a system. Will exit with code 1 on server error and code 2 if the system could not be found in EDSM. - distancebetween Calculates the distance between two systems. Will exti + distancebetween Calculates the distance between two systems. Will exit with code 1 on server error and code 2 if (one of) the systems could not be found on EDSM. ``` diff --git a/explorationtools.py b/explorationtools.py index 4db7edd..25da93c 100755 --- a/explorationtools.py +++ b/explorationtools.py @@ -50,7 +50,7 @@ parser_bodycount = subparsers.add_parser("bodycount", parser_bodycount.add_argument("system", nargs=1) parser_distance = subparsers.add_parser("distancebetween", - help="Calculates the distance between two systems. Will exti with code 1 " + help="Calculates the distance between two systems. Will exit with code 1 " + "on server error and code 2 if (one of) the systems could not be found " + "on EDSM.") parser_distance.add_argument("system", nargs=2)