[gest_crans] échappement sale des doubles-quotes

darcs-hash:20090615093516-bd074-6236d5f2628d9b62915c2038dc22123ac48a57e6.gz
This commit is contained in:
Antoine Durand-Gasselin 2009-06-15 11:35:16 +02:00
parent 0c02d70774
commit 7ec896df47

View file

@ -1306,7 +1306,7 @@ def set_wifi(machine):
arg += u'"Position E :" 3 29 "%s" 3 42 12 0 ' % "" arg += u'"Position E :" 3 29 "%s" 3 42 12 0 ' % ""
arg += u'"Hotspot :" 4 1 "%s" 4 10 5 0 ' % (machine.hotspot() and 'oui' or 'non') arg += u'"Hotspot :" 4 1 "%s" 4 10 5 0 ' % (machine.hotspot() and 'oui' or 'non')
arg += u'"Nvram (cf wiki) :" 5 1 "%s" 6 1 100 0 ' % ', '.join(machine.nvram()) arg += u'"Nvram (cf wiki) :" 5 1 "%s" 6 1 100 0 ' % ', '.join(machine.nvram()).replace('"', '\\"')
# Affichage # Affichage
annul, result = dialog(arg) annul, result = dialog(arg)