From 04d3eb33b1f4e8bd76120041c5a651a299c7a4d0 Mon Sep 17 00:00:00 2001 From: Luke Faraone Date: Tue, 18 Aug 2015 19:21:39 -0700 Subject: [PATCH] run-dev.py: Reword --interface help text. The old language was confusing because "the interface" could refer to something like eth0, but in actuality refers to the IP/hostname to listen on. (imported from commit 4f77d72a4dfcdbe7e7747c6228975aa68dfbe6ac) --- tools/run-dev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run-dev.py b/tools/run-dev.py index d0366758bc..d38bee044e 100755 --- a/tools/run-dev.py +++ b/tools/run-dev.py @@ -39,7 +39,7 @@ parser.add_option('--test', parser.add_option('--interface', action='store', dest='interface', - default='127.0.0.1', help='Set the interface for the proxy to listen on') + default='127.0.0.1', help='Set the IP or hostname for the proxy to listen on') (options, args) = parser.parse_args()