From b4e0ce8bfb022cc207b661bb581d4bf57c518245 Mon Sep 17 00:00:00 2001 From: Joakim Lönnegren Date: Oct 03 2019 11:57:09 +0000 Subject: Fix help text typos in runserver.py Fix redundant word and typo in argparse help text --- diff --git a/runserver.py b/runserver.py index c95565f..b2abf5b 100644 --- a/runserver.py +++ b/runserver.py @@ -24,7 +24,7 @@ parser.add_argument( parser.add_argument( '--host', default="127.0.0.1", help='Hostname to listen on. When set to 0.0.0.0 the server is available ' - 'externally. Defaults to 127.0.0.1 making the it only visable on localhost') + 'externally. Defaults to 127.0.0.1 making it only visible on localhost') args = parser.parse_args()