From 09bec48e92abda051445a3888767fff1081bbe22 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Tue, 29 Nov 2005 23:33:59 +0000 Subject: show error messages when hdd-init fails --- lib/python/Components/Harddisk.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/python/Components/Harddisk.py') diff --git a/lib/python/Components/Harddisk.py b/lib/python/Components/Harddisk.py index 09864fc9..133e063f 100644 --- a/lib/python/Components/Harddisk.py +++ b/lib/python/Components/Harddisk.py @@ -127,6 +127,8 @@ class Harddisk: res = os.system("mkdir /hdd/movies") return (res >> 8) + errorList = [ _("Everything is fine"), _("Creating partition failed"), _("Mkfs failed"), _("Mount failed"), _("Create movie folder failed"), _("Unmount failed")] + def initialize(self): if self.unmount() != 0: return -5 -- cgit v1.2.3