[commit] r1132 - trunk/Install/Build

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Thu Jan 13 08:51:34 CST 2011


Author: ksmyth
Date: Thu Jan 13 08:51:31 2011
New Revision: 1132

Log:
Fix minor string>list issue

Modified:
   trunk/Install/Build/tools.py

Modified: trunk/Install/Build/tools.py
==============================================================================
--- trunk/Install/Build/tools.py	Wed Jan 12 17:01:34 2011	(r1131)
+++ trunk/Install/Build/tools.py	Thu Jan 13 08:51:31 2011	(r1132)
@@ -73,8 +73,7 @@
     """
     cmd_line = [ZIP_PRG, '-9', '-r', zipname, '.']
     if pattern is not None:
-        cmd_line.extend(["-i ", pattern])
-    cmd_line.append('>NUL')
+        cmd_line.extend(["-i"] + pattern.split())
     system(cmd_line, dirname)
 
 


More information about the gme-commit mailing list