[PATCH] Fix a string that was modified before translation (#1004960)

David Shea dshea at redhat.com
Thu Sep 5 21:29:33 UTC 2013


---
 pyanaconda/ui/tui/spokes/network.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyanaconda/ui/tui/spokes/network.py b/pyanaconda/ui/tui/spokes/network.py
index b44b586..cdd9209 100644
--- a/pyanaconda/ui/tui/spokes/network.py
+++ b/pyanaconda/ui/tui/spokes/network.py
@@ -262,7 +262,7 @@ class ConfigureNetworkSpoke(EditTUISpoke):
     category = "network"
 
     edit_fields = [
-        Entry(_('IPv4 address or %s for DHCP' % '"dhcp"'), "ip",
+        Entry(_('IPv4 address or %s for DHCP') % '"dhcp"', "ip",
               re.compile("^" + IPV4_PATTERN_WITHOUT_ANCHORS + "|dhcp$"), True),
         Entry(_("IPv4 netmask"), "netmask", re.compile("^" + IPV4_PATTERN_WITHOUT_ANCHORS + "$"), True),
         Entry(_("IPv4 gateway"), "gateway", re.compile("^" + IPV4_PATTERN_WITHOUT_ANCHORS + "$"), True),
-- 
1.8.3.1



More information about the anaconda-patches mailing list