diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-08-11 10:18:29 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-08-11 10:18:29 +0200 |
commit | 947c9f2227af0c9abc6506ab959abc1177a37d13 (patch) | |
tree | 644a0097c89e9782ee97e4296ee9aeeea2219482 | |
parent | 1416f458e5cc8bc0440267980a3fbb674d1377f3 (diff) | |
download | portato-947c9f2227af0c9abc6506ab959abc1177a37d13.tar.gz portato-947c9f2227af0c9abc6506ab959abc1177a37d13.tar.bz2 portato-947c9f2227af0c9abc6506ab959abc1177a37d13.zip |
Fix GPytage plugin
Diffstat (limited to '')
-rw-r--r-- | plugins/gpytage.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gpytage.py b/plugins/gpytage.py index d014f19..b7b48d7 100644 --- a/plugins/gpytage.py +++ b/plugins/gpytage.py @@ -12,12 +12,12 @@ from subprocess import Popen -class GPytage (Plugin): +class GPytage (WidgetPlugin): __author__ = "René 'Necoro' Neumann" __description__ = "Adds a menu entry to directly start <b>gpytage</b>, a config editor." __dependency__ = ["app-portage/gpytage"] - def init (self): + def widget_init (self): self.create_widget("Plugin Menu", "Config _Editor", activate = self.menu) def menu (self, *args): |