From 36b418ec65815a2b737808835cc490db67c36bd8 Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Wed, 16 Mar 2011 21:55:13 +0000 Subject: [PATCH] 4109: Command line arguments for tools ignored svn: r16836 --- src/PluginUtils/_Tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PluginUtils/_Tool.py b/src/PluginUtils/_Tool.py index 98f8b990e..d9498e5cc 100644 --- a/src/PluginUtils/_Tool.py +++ b/src/PluginUtils/_Tool.py @@ -259,7 +259,7 @@ def cli_tool(dbstate, name,category,tool_class, options_class, options_str_dict) # run tool try: - tool_class(dbstate,None, options_class, name,None) + tool_class(dbstate, None, clt.option_class, name, None) except: log.error("Failed to start tool.", exc_info=True)