From eee36618fe297bf306c19a7deb11941b53680272 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 22 Jan 2016 17:19:51 -0800 Subject: [PATCH] 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. --- tools/run-dev.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/run-dev.py b/tools/run-dev.py index 67b1614d07..e43b91d5ba 100755 --- a/tools/run-dev.py +++ b/tools/run-dev.py @@ -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"