From f532f3d6792ae1b5c84c77bccf1f6cd6d17e89e0 Mon Sep 17 00:00:00 2001 From: Jan Vcelak Date: Mon, 28 Jan 2013 14:48:54 +0100 Subject: [PATCH] plugin base: fix non-device commands invocation --- tuned/plugins/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuned/plugins/base.py b/tuned/plugins/base.py index 6a9ecaa..9ad77ce 100644 --- a/tuned/plugins/base.py +++ b/tuned/plugins/base.py @@ -319,7 +319,7 @@ class Plugin(object): command["custom"](True, new_value) else: current_value = command["get"]() - self._storage_set(instance, command_name, current_value) + self._storage_set(instance, command, current_value) command["set"](new_value) def _cleanup_all_non_device_commands(self, instance):