summaryrefslogtreecommitdiff
path: root/plugins/gpytage.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gpytage.py')
-rw-r--r--plugins/gpytage.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/gpytage.py b/plugins/gpytage.py
index d8c2831..5ebd6b4 100644
--- a/plugins/gpytage.py
+++ b/plugins/gpytage.py
@@ -13,14 +13,14 @@
from subprocess import Popen
class GPytage (Plugin):
- __author__ = "René 'Necoro' Neumann"
- __description__ = "Adds a menu entry to directly start <b>gpytage</b>, a config editor."
- __dependency__ = ["app-portage/gpytage"]
+ __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):
- self.add_menu("Config _Editor", self.menu)
+ def init (self):
+ self.add_menu("Config _Editor", self.menu)
- def menu (self, *args):
- Popen(["/usr/bin/gpytage"])
+ def menu (self, *args):
+ Popen(["/usr/bin/gpytage"])
register(GPytage)