diff options
| author | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-10-12 17:25:15 +0000 |
|---|---|---|
| committer | Andreas Frisch <andreas.frisch@multimedia-labs.de> | 2008-10-12 17:25:15 +0000 |
| commit | 086e88ff090a0604aedd92e75ce5169d693c4e77 (patch) | |
| tree | 462c4e78dc25e7582b314e6e021e211616ad3699 /lib/python/Plugins/SystemPlugins | |
| parent | 2ca2437ed16a3676fea816e2061aefb69ccf047d (diff) | |
| download | enigma2-086e88ff090a0604aedd92e75ce5169d693c4e77.tar.gz enigma2-086e88ff090a0604aedd92e75ce5169d693c4e77.zip | |
bugfix for cancelling
Diffstat (limited to 'lib/python/Plugins/SystemPlugins')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py b/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py index 5a95d3fd..036523a4 100644 --- a/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py +++ b/lib/python/Plugins/SystemPlugins/NFIFlash/downloader.py @@ -469,7 +469,7 @@ class NFIDownload(Screen): print "[flasherdownload_failed] " + error_message message = "%s %s" % (_("Download of USB flasher boot image failed: "),error_message) self.session.open(MessageBox, message, MessageBox.TYPE_ERROR) - self.query_remove_img(True) + self.remove_img(True) def flasherdownload_finished(self, string=""): print "[flasherdownload_finished] " + str(string) @@ -555,7 +555,7 @@ class NFIDownload(Screen): self.delayTimer.callback.append(self.progress_increment) self.delayTimer.start(105, False) else: - self.remove_img() + self.remove_img(True) def fdisk_finished(self, retval): self.container.appClosed.get().remove(self.fdisk_finished) |
