diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-05-29 23:18:21 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-05-29 23:18:21 +0000 |
commit | 01775d2b53abdc48fbe15ba8284dd3cafdcb3a87 (patch) | |
tree | 6fd3b7d0d39b2439f2c75d92fe3cd5b87dd63ac7 | |
parent | 9df6f4ab8e8f9c8c68d88a5a0201d4eff1cd2501 (diff) | |
download | anaconda-01775d2b53abdc48fbe15ba8284dd3cafdcb3a87.tar.gz anaconda-01775d2b53abdc48fbe15ba8284dd3cafdcb3a87.tar.xz anaconda-01775d2b53abdc48fbe15ba8284dd3cafdcb3a87.zip |
make html release notes work in other languages too (#65672)
-rwxr-xr-x | gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -543,7 +543,7 @@ class InstallControlWindow: fn = "%s/RELEASE-NOTES%s" % (sourcepath, suffix) if os.access(fn, os.R_OK): file = open(fn, "r") - if suffix == '.html': + if suffix[-5:] == '.html': buffer = htmlbuffer.HTMLBuffer() buffer.feed(utf8(file.read())) self.releaseNotesBuffer = buffer.get_buffer() |