From 010f1ddb0edf82f24ad6712de4d1748793d00b9e Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Aug 29 2016 04:58:53 +0000 Subject: split long line for host argument help string --- diff --git a/runserver.py b/runserver.py index 03be9c2..71056d3 100755 --- a/runserver.py +++ b/runserver.py @@ -27,7 +27,8 @@ parser.add_argument( help='Port for the flask application.') 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') + 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') args = parser.parse_args()