aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-12-19 07:31:22 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-12-19 07:31:22 +0000
commit5346cb6fc890e76e3b61c616aa6fb7c9ecbe5ae8 (patch)
tree35af88a876ee2b064bc8b8afe5fce1a46849c6f1 /lib/python/Plugins
parenteaa8bc374ff5eca1bb3caf9517dc6772cae34dd6 (diff)
downloadenigma2-5346cb6fc890e76e3b61c616aa6fb7c9ecbe5ae8.tar.gz
enigma2-5346cb6fc890e76e3b61c616aa6fb7c9ecbe5ae8.zip
fix software update plugin to match the new IpkgComponent
Diffstat (limited to 'lib/python/Plugins')
-rw-r--r--lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py b/lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py
index 2a7bf655..c71ffdbb 100644
--- a/lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/SoftwareUpdate/plugin.py
@@ -229,8 +229,8 @@ class UpdatePlugin(Screen):
<screen position="100,100" size="550,200" title="Software Update..." >
<widget name="activityslider" position="0,0" size="550,5" />
<widget name="slider" position="0,100" size="550,30" />
- <widget name="package" position="10,30" size="420,20" font="Regular;18"/>
- <widget name="status" position="10,60" size="420,45" font="Regular;18"/>
+ <widget name="package" position="10,30" size="540,20" font="Regular;18"/>
+ <widget name="status" position="10,60" size="540,45" font="Regular;18"/>
</screen>"""
def __init__(self, session, args = None):
@@ -296,7 +296,7 @@ class UpdatePlugin(Screen):
elif event == IpkgComponent.EVENT_DONE:
if self.updating:
self.updating = False
- self.ipkg.startCmd(Ipkg.CMD_UPGRADE, args = {'test_only': False})
+ self.ipkg.startCmd(IpkgComponent.CMD_UPGRADE, args = {'test_only': False})
elif self.error == 0:
self.slider.setValue(4)