From fcbf3939b8777137b214bc1d423a335187818542 Mon Sep 17 00:00:00 2001 From: bfox Date: Tue, 1 Aug 2000 15:25:13 +0000 Subject: fix typo from previous commit --- text.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'text.py') 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]) -- cgit