summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorbfox <bfox>2000-08-01 15:25:13 +0000
committerbfox <bfox>2000-08-01 15:25:13 +0000
commitfcbf3939b8777137b214bc1d423a335187818542 (patch)
tree7b16da8acf61c0a7fd08997e23b4508827a13be5 /text.py
parent3651e0cca1002822122c8fbc8737f2c9f680b8ba (diff)
downloadanaconda-fcbf3939b8777137b214bc1d423a335187818542.tar.gz
anaconda-fcbf3939b8777137b214bc1d423a335187818542.tar.xz
anaconda-fcbf3939b8777137b214bc1d423a335187818542.zip
fix typo from previous commit
Diffstat (limited to 'text.py')
-rw-r--r--text.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/text.py b/text.py
index bb1e9badf..de20ea9c6 100644
--- a/text.py
+++ b/text.py
@@ -1012,9 +1012,8 @@ class InstallInterface:
# clear out the old root text by writing spaces in the blank
# area on the right side of the screen
self.screen.drawRootText (len(_(self.welcomeText)), 0,
- (self.screen.width - len(_(self.welcomeText)) * " ")
- self.screen.drawRootText (0 - len(_(step[0])),
- 0, _(step[0]))
+ (self.screen.width - len(_(self.welcomeText))) * " ")
+ self.screen.drawRootText (0 - len(_(step[0])), 0, _(step[0]))
# This is *disgusting* (ewt)
if step[1] == UpgradeExamineWindow:
rc = apply (step[1](), (dir,) + step[2])