run-dev: Fix overwritten manage_args variable with the wrong type.

manage_args is set to a list of arguments a few lines later in the
function, making this initialization as the empty string useless and
confusing.

Discovered using mypy.
This commit is contained in:
Tim Abbott 2016-01-22 17:19:51 -08:00
parent 8dcdb1d8a8
commit eee36618fe

View File

@ -47,7 +47,6 @@ parser.add_option('--interface',
(options, args) = parser.parse_args()
base_port = 9991
manage_args = ''
if options.test:
base_port = 9981
settings_module = "zproject.test_settings"