diff options
author | Chris Lumens <clumens@redhat.com> | 2007-09-19 20:32:59 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-09-19 20:32:59 +0000 |
commit | e523b229561c0c7261257b106c694708e7db0424 (patch) | |
tree | 17f426dce1095f5fe4f52499c37cd5d3c04d41b2 /iw | |
parent | dc6dd742d400979f94ae1b0191afea33574475d4 (diff) | |
download | anaconda-e523b229561c0c7261257b106c694708e7db0424.tar.gz anaconda-e523b229561c0c7261257b106c694708e7db0424.tar.xz anaconda-e523b229561c0c7261257b106c694708e7db0424.zip |
A couple more pychecker error fixes. That should do it for now.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/progress_gui.py | 2 | ||||
-rw-r--r-- | iw/release_notes.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/iw/progress_gui.py b/iw/progress_gui.py index 46d1c3531..de55b8759 100644 --- a/iw/progress_gui.py +++ b/iw/progress_gui.py @@ -48,7 +48,7 @@ class InstallProgressWindow (InstallWindow): if pct - cur > self._updateChange: self.progress.set_fraction(pct) if self._showPercentage: - self.progress.set_text("%d %" %(pct * 100,)) + self.progress.set_text("%d %%" %(pct * 100,)) self.processEvents() def set_label(self, txt): diff --git a/iw/release_notes.py b/iw/release_notes.py index 15e6d5c45..e33d4dbdd 100644 --- a/iw/release_notes.py +++ b/iw/release_notes.py @@ -134,7 +134,7 @@ class ReleaseNotesViewer: try: f = self.openURI(uri) except OSError: - self.log("Failed to open %s" % (link,)) + self.log("Failed to open %s" % (uri,)) return if f is not None: |