summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-02-18 10:47:34 +0100
committerHans de Goede <hdegoede@redhat.com>2010-02-20 20:20:24 +0100
commit1d17c6d95fc7500e5419c4e588dfb8a53c02a935 (patch)
tree871a97e0a4b4bf08fbec682f7610a7a972e638ca
parent52e7ce7b2e54c308967c7cce02e16a5d8d1b4cb0 (diff)
downloadanaconda-1d17c6d95fc7500e5419c4e588dfb8a53c02a935.tar.gz
anaconda-1d17c6d95fc7500e5419c4e588dfb8a53c02a935.tar.xz
anaconda-1d17c6d95fc7500e5419c4e588dfb8a53c02a935.zip
RescueInterface should inherit from InstallInterfaceBase too
-rw-r--r--rescue.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/rescue.py b/rescue.py
index 73e4258d6..b48e27d49 100644
--- a/rescue.py
+++ b/rescue.py
@@ -30,6 +30,7 @@ import sys
import os
import isys
from storage import mountExistingSystem
+from installinterfacebase import InstallInterfaceBase
import iutil
import shutil
import time
@@ -42,7 +43,7 @@ _ = lambda x: gettext.ldgettext("anaconda", x)
import logging
log = logging.getLogger("anaconda")
-class RescueInterface:
+class RescueInterface(InstallInterfaceBase):
def waitWindow(self, title, text):
return WaitWindow(self.screen, title, text)
@@ -118,6 +119,7 @@ class RescueInterface:
pass
def __init__(self, screen):
+ InstallInterfaceBase.__init__(self)
self.screen = screen
# XXX grub-install is stupid and uses df output to figure out