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)
This commit is contained in:
Luke Faraone 2015-08-18 19:21:39 -07:00 committed by Tim Abbott
parent 6f77e68622
commit 04d3eb33b1
1 changed files with 1 additions and 1 deletions

View File

@ -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()