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

Chris Lamb lamby at debian.org
Wed Jul 8 23:54:42 UTC 2009


The following commit has been merged in the master branch:
commit 613d661a5632b90621c12c25103fc85291fcfba0
Author: Chris Lamb <lamby at debian.org>
Date:   Thu Jul 9 00:25:09 2009 +0100

    Update vte form_command calls to new API. Thanks to Jor <jor123 at gmail.com>. (Closes: #533556)

diff --git a/LiveMagic/controllers/build.py b/LiveMagic/controllers/build.py
index 2c89ebf..8677daf 100644
--- a/LiveMagic/controllers/build.py
+++ b/LiveMagic/controllers/build.py
@@ -53,7 +53,7 @@ class BuildController(object):
 
         # Fork command
         cmd = [find_resource('live-magic-builder')]
-        self.pid = self.view.vte_terminal.fork_command(cmd[0], cmd, None, os.getcwd())
+        self.pid = self.view.vte_terminal.fork_command(cmd[0], cmd, [], os.getcwd())
 
         if self.pid < 0:
             self.view.set_build_titles(_("Error creating Debian Live system!"), \
@@ -70,7 +70,7 @@ class BuildController(object):
         def _exec(*cmds):
             glue = ' | tee -a %s ;' % LOG_FILE
             args = ['/bin/sh', '-c', glue.join(cmds)]
-            self.view.vte_terminal.fork_command(args[0], args, None, os.getcwd())
+            self.view.vte_terminal.fork_command(args[0], args, [], os.getcwd())
 
         def set_cleaning_status():
             try:
diff --git a/debian/changelog b/debian/changelog
index d8b3869..f133391 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,8 @@ live-magic (1.7) UNRELEASED; urgency=low
     seems a more robust way of ensuring that the child process can actually
     talk to X. We set the path manually in live-magic-builder to prevent the
     actual failure originally reported in #491242.
+  * Update vte form_command calls to new API. Thanks to Jor <jor123 at gmail.com>.
+    (Closes: #533556)
 
  -- Chris Lamb <lamby at debian.org>  Wed, 08 Jul 2009 22:26:23 +0100
 

-- 
GUI front-end for Debian Live.



More information about the debian-live-changes mailing list