summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2007-11-20 13:11:07 +0100
committerJoel Andres Granados <jgranado@redhat.com>2007-11-20 13:11:07 +0100
commitcd6540b793a00dab41764ee82ef34492160be9dd (patch)
tree82997040977f4c6dfbccfd79fc66189fac088d71
parentaa625eda60064d1985244edebb677b660e6b4a34 (diff)
downloadfirstaidkit-cd6540b793a00dab41764ee82ef34492160be9dd.tar.gz
firstaidkit-cd6540b793a00dab41764ee82ef34492160be9dd.tar.xz
firstaidkit-cd6540b793a00dab41764ee82ef34492160be9dd.zip
Typo
-rw-r--r--tasker/plugins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasker/plugins.py b/tasker/plugins.py
index f981ba0..93987e5 100644
--- a/tasker/plugins.py
+++ b/tasker/plugins.py
@@ -34,7 +34,7 @@ class DummyPlugin(object):
"pre" : {True: "init"},
"init": {True: "diagnose", False: None, None: None},
"diagnose": {True: "destroy", False: "backup", None: "destroy"},
- "backup": {True: "fix", False: "destrooy", None: "destroy"},
+ "backup": {True: "fix", False: "destroy", None: "destroy"},
"fix": {True: "destroy", False: "restore", None: "restore"},
"restore": {True: "destroy", "False": "destroy", None: "destroy"},
"destroy": {True: None, False: None, None: None}