From 2762f12f7f5b2ce73e96db5676f5a5aa15663ee6 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 27 Apr 2016 10:03:50 -0700 Subject: [PATCH] Remove the duplicate modstyle parameter --- hacking/test-module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/test-module b/hacking/test-module index 9f05ec30c0e..e2cacfd3568 100755 --- a/hacking/test-module +++ b/hacking/test-module @@ -175,7 +175,7 @@ def ziploader_setup(modfile, modname): print("* ziploader module detected; extracted module source to: %s" % debug_dir) return modfile, argsfile -def runtest(modstyle, modfile, argspath, modname, module_style): +def runtest(modfile, argspath, modname, module_style): """Test run a module, piping it's output for reporting.""" if module_style == 'ziploader': modfile, argspath = ziploader_setup(modfile, modname)