diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-23 05:19:57 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-23 05:19:57 +0000 |
| commit | b2d6392a3b41f870b5615c8e19b26496e56f6310 (patch) | |
| tree | df2f0d446d2afb704941d7cd4e7e2262b1f3a660 /lib/python/Screens/HarddiskSetup.py | |
| parent | 7ae6b9f9b79a7fb2a94fcc4863f1cfdade7ce19b (diff) | |
| download | enigma2-b2d6392a3b41f870b5615c8e19b26496e56f6310.tar.gz enigma2-b2d6392a3b41f870b5615c8e19b26496e56f6310.zip | |
beautify messagebox
add functionality to the messagebox
Diffstat (limited to 'lib/python/Screens/HarddiskSetup.py')
| -rw-r--r-- | lib/python/Screens/HarddiskSetup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/HarddiskSetup.py b/lib/python/Screens/HarddiskSetup.py index 72480ce8..290d0bac 100644 --- a/lib/python/Screens/HarddiskSetup.py +++ b/lib/python/Screens/HarddiskSetup.py @@ -44,7 +44,7 @@ class HarddiskSetup(Screen): def hddReady(self, result): print "Result: " + str(result) if (result != 0): - self.session.open(MessageBox, _("Unable to initialize harddisk.\nPlease refer to the user manual.\nError: ") + str(self.hdd.errorList[0 - result])) + self.session.open(MessageBox, _("Unable to initialize harddisk.\nPlease refer to the user manual.\nError: ") + str(self.hdd.errorList[0 - result]), MessageBox.TYPE_ERROR) else: self.close() |
