diff options
author | Matt Wilson <msw@redhat.com> | 2002-02-13 23:39:45 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2002-02-13 23:39:45 +0000 |
commit | 77630f3a9d2e835f9227fcf3a684ad722bfe801c (patch) | |
tree | 012f7d95987820b1a4b704b6d89b2111161427e9 /gui.py | |
parent | 7d2669be368eb89e631309ebc683d38f729bbec4 (diff) | |
download | anaconda-77630f3a9d2e835f9227fcf3a684ad722bfe801c.tar.gz anaconda-77630f3a9d2e835f9227fcf3a684ad722bfe801c.tar.xz anaconda-77630f3a9d2e835f9227fcf3a684ad722bfe801c.zip |
avoid double translating
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -609,7 +609,7 @@ class InstallControlWindow: self.currentWindow = None def update (self, ics): - self.installFrame.set_label (_(ics.getTitle ())) + self.installFrame.set_label (ics.getTitle ()) prevButton = self.prevButtonStock nextButton = self.nextButtonStock |