From 99c56b56c6448eb75a6dfa844b8de121667033da Mon Sep 17 00:00:00 2001 From: James Booth Date: Wed, 24 Feb 2016 00:43:32 +0000 Subject: [PATCH] Fixed error messages in python test plugin --- tests/python-test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python-test.py b/tests/python-test.py index d8f0071..4a26e42 100644 --- a/tests/python-test.py +++ b/tests/python-test.py @@ -98,9 +98,9 @@ def cmd_pythontest(arg1=None, arg2=None, arg3=None): prof.log_error(arg3) prof.win_show(plugin_win, "called -> prof.log_error: " + arg3) else: - prof.cons_bad_cmd_usage("/c-test") + prof.cons_bad_cmd_usage("/python-test") else: - prof.cons_bad_cmd_usage("/c-test") + prof.cons_bad_cmd_usage("/python-test") def prof_init(version, status): prof.win_create(plugin_win, _handle_win_input)