summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRadek Vykydal <rvykydal@redhat.com>2008-11-11 21:42:33 +0100
committerHans de Goede <hdegoede@redhat.com>2008-11-11 22:25:39 +0100
commit2ebc5a04b251a3cfc357c66b6e42dd199f38552d (patch)
treeff7ad5540bc229b8e892f16877cf6d020d5e16ba
parent980620428c043672d1b6b72281be667ab28a0a24 (diff)
downloadanaconda-2ebc5a04b251a3cfc357c66b6e42dd199f38552d.tar.gz
anaconda-2ebc5a04b251a3cfc357c66b6e42dd199f38552d.tar.xz
anaconda-2ebc5a04b251a3cfc357c66b6e42dd199f38552d.zip
Fix syntax error at text.py line 475
Fix syntax error at text.py line 475 (courtesey of pychecker)
-rw-r--r--text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index 9a6c94815..5daa10be4 100644
--- a/text.py
+++ b/text.py
@@ -472,7 +472,7 @@ class InstallInterface:
txt = TextboxReflowed(65, ic.instkeydesc or
_("Please enter your %(instkey)s") %
- {instkey: keyname,})
+ {"instkey": keyname,})
g.add(txt, 0, 0, (0,0,0,1))