summaryrefslogtreecommitdiff
path: root/plugins/gpytage.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-09-02 13:01:17 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-09-02 13:01:17 +0200
commitafa1de13f0576ace6dcbb0176490fd20922950cd (patch)
tree056a5fd646f53dfa83f2fe231ec0943747b15ffc /plugins/gpytage.py
parent02d96210d9102f0cdec95b4e0f595cbd8fdd1e10 (diff)
downloadportato-afa1de13f0576ace6dcbb0176490fd20922950cd.tar.gz
portato-afa1de13f0576ace6dcbb0176490fd20922950cd.tar.bz2
portato-afa1de13f0576ace6dcbb0176490fd20922950cd.zip
Switch from tabs to 4 spaces
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)