diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-22 19:33:57 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-22 19:33:57 +0000 |
commit | 97277699efdbcc476247aad9dded29de4e77868d (patch) | |
tree | e8b06314da2573d325826fdf3a899ed6aae6bf34 /iw | |
parent | w/welcome_gui.py: InstallControlWindow.__init__ needs anaconda (diff) | |
download | anaconda-97277699efdbcc476247aad9dded29de4e77868d.tar.gz anaconda-97277699efdbcc476247aad9dded29de4e77868d.tar.bz2 anaconda-97277699efdbcc476247aad9dded29de4e77868d.zip |
iw/welcome_gui.py: change concat into %formatting
Diffstat (limited to 'iw')
-rw-r--r-- | iw/welcome_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py index e7b7173..408a3d8 100644 --- a/iw/welcome_gui.py +++ b/iw/welcome_gui.py @@ -113,7 +113,7 @@ environment installed on your new system. "), text_ = xml.get_widget("text") title_.set_markup("<span size=\"x-large\">%s</span>" % (_("Chapter %i: %s") % (chapter, title))) text_.set_text(text) - InstallControlWindow(anaconda).set_chapter(chapter, title, "http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?part=1&chap="+chapter) + InstallControlWindow(anaconda).set_chapter(chapter, title, "http://www.gentoo.org/doc/en/handbook/handbook-amd64.xml?part=1&chap=%i"%chapter) return align |