DBRTools - piped the unzip output to null so that cleanenv isn't as noisy.
authorMattD <mattd@symbian.org>
Tue, 09 Mar 2010 14:37:22 +0000
changeset 189 0d02b2df4cbb
parent 186 b76adfbc6648
child 190 f00ca9500521
DBRTools - piped the unzip output to null so that cleanenv isn't as noisy.
dbrtools/dbr/dbrutils.py
--- a/dbrtools/dbr/dbrutils.py	Mon Mar 08 18:21:32 2010 +0000
+++ b/dbrtools/dbr/dbrutils.py	Tue Mar 09 14:37:22 2010 +0000
@@ -80,7 +80,8 @@
         str = '%s%s' % (file,'\n')
         f.write(str)    
     f.close()
-    exestr = '7z x -y -i@%s %s' %(tmpfilename,name)
+    exestr = '7z x -y -i@%s %s >nul' %(tmpfilename,name)
+#    exestr = '7z x -y -i@%s %s' %(tmpfilename,name)
     print 'executing: >%s<\n' %exestr
     os.system(exestr)
     os.unlink(tmpfilename)