From 3e49679c9223518dd2b77897bd50f8f993f74540 Mon Sep 17 00:00:00 2001 From: Martin Sivak Date: Mon, 21 Jun 2010 13:12:32 +0200 Subject: Add a finer grained possibility to interrupt execution and do some tweaks in Gtk UI --- plugins/plugin_examples/dialogue.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'plugins/plugin_examples') diff --git a/plugins/plugin_examples/dialogue.py b/plugins/plugin_examples/dialogue.py index c026d8e..560a6e9 100644 --- a/plugins/plugin_examples/dialogue.py +++ b/plugins/plugin_examples/dialogue.py @@ -28,6 +28,11 @@ class DialoguePlugin(Plugin): name = "DialoguePlugin" version = "0.0.1" author = "Miloslav Trmač" + + @classmethod + def getDeps(cls): + return set(["experimental", "broken"]) + def __init__(self, *args, **kwargs): Plugin.__init__(self, *args, **kwargs) self._issue = SimpleIssue(self.name, self.description) -- cgit