diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-03-10 20:57:09 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-03-10 20:57:09 +0000 |
| commit | d42c7e8e98191d2e0f17aff78074e76710e704d1 (patch) | |
| tree | a3bbb95def6dafa43d28b4656fc0f2fa7b77e10c /lib/python/Plugins/SystemPlugins/SoftwareUpdate | |
| parent | 285441cbbf16e83353648dedb2e38ddeb905fb51 (diff) | |
| download | enigma2-d42c7e8e98191d2e0f17aff78074e76710e704d1.tar.gz enigma2-d42c7e8e98191d2e0f17aff78074e76710e704d1.zip | |
add parameter to Console screen to set the console window title
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/SoftwareUpdate')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py b/lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py index af4d8982..c0649b13 100644 --- a/lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py @@ -59,7 +59,7 @@ class UpdatePluginMenu(Screen): self.session.open(MessageBox, _("Function not yet implemented"), MessageBox.TYPE_ERROR) def runUpgrade(self, result): if result: - self.session.open(Console, ["ipkg update", "ipkg upgrade -force-defaults -force-overwrite"]) + self.session.open(Console, title = "Upgrade running...", cmdlist = ["ipkg update", "ipkg upgrade -force-defaults -force-overwrite"]) class IPKGSource(Screen): skin = """ |
