summaryrefslogtreecommitdiff
path: root/plugins/reload_portage.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/reload_portage.py
parent02d96210d9102f0cdec95b4e0f595cbd8fdd1e10 (diff)
downloadportato-afa1de13f0576ace6dcbb0176490fd20922950cd.tar.gz
portato-afa1de13f0576ace6dcbb0176490fd20922950cd.tar.bz2
portato-afa1de13f0576ace6dcbb0176490fd20922950cd.zip
Switch from tabs to 4 spaces
Diffstat (limited to '')
-rw-r--r--plugins/reload_portage.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/reload_portage.py b/plugins/reload_portage.py
index 280bd92..1aea01f 100644
--- a/plugins/reload_portage.py
+++ b/plugins/reload_portage.py
@@ -13,15 +13,15 @@
from portato.backend import system
class ReloadPortage (Plugin):
- __author__ = "René 'Necoro' Neumann"
- __description__ = """Reloads portage when an emerge process has finished.
+ __author__ = "René 'Necoro' Neumann"
+ __description__ = """Reloads portage when an emerge process has finished.
This can take some time, but sometimes it is necessairy."""
-
- def init(self):
- self.add_call("after_emerge", self.hook, type = "after", dep = "EtcProposals")
- self.status = self.STAT_DISABLED # disable by default
-
- def hook (self, *args, **kwargs):
- system.reload_settings()
+
+ def init(self):
+ self.add_call("after_emerge", self.hook, type = "after", dep = "EtcProposals")
+ self.status = self.STAT_DISABLED # disable by default
+
+ def hook (self, *args, **kwargs):
+ system.reload_settings()
register(ReloadPortage)