[SCM] GUI front-end for Debian Live. branch, master, updated. 862558aa95f245311e31ea4eccc375871f10600c

Chris Lamb chris at chris-lamb.co.uk
Sat Aug 9 07:55:29 UTC 2008


The following commit has been merged in the master branch:
commit 6ee060e404d0daeb39540f5fe54958531620af18
Author: Chris Lamb <chris at chris-lamb.co.uk>
Date:   Sat Aug 9 08:39:53 2008 +0100

    Fix bug in gettext handling ("_" function shadowing)
    
    Signed-off-by: Chris Lamb <chris at chris-lamb.co.uk>

diff --git a/LiveMagic/controllers/wizard.py b/LiveMagic/controllers/wizard.py
index a61a51a..23646be 100644
--- a/LiveMagic/controllers/wizard.py
+++ b/LiveMagic/controllers/wizard.py
@@ -57,7 +57,7 @@ class WizardController(object):
             title = _("Enter your password to continue")
             text = _("Debian Live Magic requires superuser capabilities to build your Debian Live system.")
 
-            for _ in range(3):
+            for num in range(3):
                 cmd = ['gksu', '--disable-grab',
                     '--message', '<big><b>%s</b></big>\n\n%s' % (title, text), '--',
                     utils.find_resource('live-magic'),

-- 
GUI front-end for Debian Live.



More information about the debian-live-changes mailing list