=== modified file 'data/templates/ubuntu-application/design.py' --- data/templates/ubuntu-application/design.py 2010-10-15 20:26:19 +0000 +++ data/templates/ubuntu-application/design.py 2010-11-19 00:57:46 +0000 @@ -51,8 +51,7 @@ #run glade with env variables pointing to catalogue xml files if templatetools.in_verbose_mode(): - instance = subprocess.Popen(cmd, shell=True) + subprocess.Popen(cmd, shell=True) else: nullfile=file("/dev/null") - instance = subprocess.Popen(cmd, shell=True, stderr=nullfile) -instance.communicate() + subprocess.Popen(cmd, shell=True, stderr=nullfile)