diff options
| author | acid-burn <acid-burn@opendreambox.org> | 2011-02-17 12:00:56 +0100 |
|---|---|---|
| committer | acid-burn <acid-burn@opendreambox.org> | 2011-02-17 12:00:56 +0100 |
| commit | 1ddbbcc5385554314a1a142d8c2b7919851fe25b (patch) | |
| tree | be56a6262594b76b80a6290aea7bba05e52d360b /lib | |
| parent | 03706708fac0d7ac8cf0b63af9e473416f42e1b5 (diff) | |
| download | enigma2-1ddbbcc5385554314a1a142d8c2b7919851fe25b.tar.gz enigma2-1ddbbcc5385554314a1a142d8c2b7919851fe25b.zip | |
PluginComponent.py: properly reset all values if clearPluginList is called for example with an language change. refs #670
Diffstat (limited to 'lib')
| -rwxr-xr-x | lib/python/Components/PluginComponent.py | 2 |
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[:]: |
