summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-05-07 19:29:06 +0000
committerJeremy Katz <katzj@redhat.com>2004-05-07 19:29:06 +0000
commit31c8f543257892559005d78af723e3028dbb7af6 (patch)
tree98ac7da4824ba7f56e40d173d95e3fd1741181fe
parent8e7627dae2a0ea44acfdc6e479f8375767ee3d1c (diff)
downloadanaconda-31c8f543257892559005d78af723e3028dbb7af6.tar.gz
anaconda-31c8f543257892559005d78af723e3028dbb7af6.tar.xz
anaconda-31c8f543257892559005d78af723e3028dbb7af6.zip
hack to work around #116170. basically, the RELEASE-NOTES.html is no longer
present and we just have RELEASE-NOTES-en.html. So, always look for -en in addition to the base set and things should work the same.
-rwxr-xr-xgui.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gui.py b/gui.py
index cdf42fb4f..66066a613 100755
--- a/gui.py
+++ b/gui.py
@@ -773,6 +773,10 @@ class InstallControlWindow:
suffixList.append("-%s.html" % (lang,))
suffixList.append(".%s" % (lang,))
else:
+ # XXX hack to work around #116170
+ suffixList.append("-en.html")
+ suffixList.append("-en")
+
suffixList.append(".html")
suffixList.append("")