From 3a83db9095de8b20c724a55b3da37fed3aab7f8f Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Wed, 16 Mar 2011 21:54:08 +0000 Subject: [PATCH] 4109: Command line arguments for tools ignored svn: r16835 --- src/gui/plug/tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/plug/tool.py b/src/gui/plug/tool.py index ea082ca46..b1a5c1c0b 100644 --- a/src/gui/plug/tool.py +++ b/src/gui/plug/tool.py @@ -261,7 +261,7 @@ def cli_tool(dbstate, name, category, tool_class, options_class, options_str_dic # 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)