diff options
| author | acid-burn <acid-burn@opendreambox.org> | 2009-12-31 08:29:47 +0100 |
|---|---|---|
| committer | acid-burn <acid-burn@opendreambox.org> | 2009-12-31 08:29:47 +0100 |
| commit | aea461bb9dc35ab20a78bd141c785bcb5967e616 (patch) | |
| tree | 1e0b23eaa6e1cf4b6c6bd7a2823aa9696ad2f425 /lib/python/Plugins/SystemPlugins/SoftwareManager | |
| parent | c2b5a1188c0b989e8983d362e23a5c499eb6cca7 (diff) | |
| download | enigma2-aea461bb9dc35ab20a78bd141c785bcb5967e616.tar.gz enigma2-aea461bb9dc35ab20a78bd141c785bcb5967e616.zip | |
SoftwareManager/plugin.py: - small cleanup and fix. This is for #112
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/SoftwareManager')
| -rwxr-xr-x | lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py index 6162d8a5..4a016dc8 100755 --- a/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py @@ -567,9 +567,7 @@ class PluginManager(Screen, DreamInfoHandler): for foundtag in prerequisites["tag"]: if categorytag == foundtag: attributes = package[0]["attributes"] - print "ATTRIBUTES",attributes if attributes.has_key("packagetype"): - print "PACKAGETYPE",attributes["packagetype"] if attributes["packagetype"] == "internal": continue self.packetlist.append([attributes["name"], attributes["details"], attributes["shortdescription"], attributes["packagename"]]) @@ -696,11 +694,12 @@ class PluginManager(Screen, DreamInfoHandler): self.session.openWithCallback(self.ExecuteReboot, MessageBox, _("Install or remove finished.") +" "+_("Do you want to reboot your Dreambox?"), MessageBox.TYPE_YESNO) def ExecuteReboot(self, result): + print "RESULT im ExecuteReboot",result if result is None: return if result is False: self.reloadPluginlist() - self.selectedFiles = None + self.selectedFiles = [] self.detailsClosed(True) if result: quitMainloop(3) |
