summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
Diffstat (limited to 'text.py')
-rw-r--r--text.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/text.py b/text.py
index 652141e15..92797565e 100644
--- a/text.py
+++ b/text.py
@@ -440,6 +440,10 @@ class InstallInterface:
return self.messageWindow(title, text, type, default, custom_icon,
custom_buttons)
+ def editRepoWindow(self, anaconda, repoObj):
+ self.messageWindow(_("Error"),
+ _("Repository editing is not available in text mode."))
+
def entryWindow(self, title, text, prompt, entrylength = None):
(res, value) = EntryWindow(self.screen, title, text, [prompt])
if res == "cancel":