aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoracid-burn <acid-burn@opendreambox.org>2011-02-17 12:00:56 +0100
committeracid-burn <acid-burn@opendreambox.org>2011-02-17 12:00:56 +0100
commit1ddbbcc5385554314a1a142d8c2b7919851fe25b (patch)
treebe56a6262594b76b80a6290aea7bba05e52d360b
parent03706708fac0d7ac8cf0b63af9e473416f42e1b5 (diff)
downloadenigma2-1ddbbcc5385554314a1a142d8c2b7919851fe25b.tar.gz
enigma2-1ddbbcc5385554314a1a142d8c2b7919851fe25b.zip
PluginComponent.py: properly reset all values if clearPluginList is called for example with an language change. refs #670
-rwxr-xr-xlib/python/Components/PluginComponent.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Components/PluginComponent.py b/lib/python/Components/PluginComponent.py
index 0e178fff..e5194b28 100755
--- a/lib/python/Components/PluginComponent.py
+++ b/lib/python/Components/PluginComponent.py
@@ -124,6 +124,8 @@ class PluginComponent:
def clearPluginList(self):
self.pluginList = []
self.plugins = {}
+ self.firstRun = True
+ self.restartRequired = False
def shutdown(self):
for p in self.pluginList[:]: