From 265f9d8078b4e3f6f85887acf33760e5691b504f Mon Sep 17 00:00:00 2001 From: Joel Andres Granados Date: Tue, 3 Jun 2008 15:53:03 +0200 Subject: initialize the flow variable in xserver plugin in the correct way. --- plugins/xserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/xserver.py b/plugins/xserver.py index 5581ccd..644addc 100644 --- a/plugins/xserver.py +++ b/plugins/xserver.py @@ -34,7 +34,7 @@ import shutil class Xserver(Plugin): """ Plugin to detect an rescue faulty xserver configurations. """ - flows = {} + flows = Flow.init(Plugin) flows["force"] = Flow({ Plugin.initial: {Return: "prepare"}, "prepare" : {ReturnSuccess: "diagnose2"}, -- cgit