[Checkins] SVN: grokproject/trunk/grokproject/utils.py Avoid spaces in executable path by using a relative one

Jan-Jaap Driessen jdriessen at thehealthagency.com
Tue Oct 19 10:33:29 EDT 2010


Log message for revision 117771:
  Avoid spaces in executable path by using a relative one

Changed:
  U   grokproject/trunk/grokproject/utils.py

-=-
Modified: grokproject/trunk/grokproject/utils.py
===================================================================
--- grokproject/trunk/grokproject/utils.py	2010-10-19 14:15:16 UTC (rev 117770)
+++ grokproject/trunk/grokproject/utils.py	2010-10-19 14:33:29 UTC (rev 117771)
@@ -102,7 +102,7 @@
     print 'Running %s...' % cmd
     subprocess.call(cmd, shell=True)
     # Then, run the project's buildout.
-    cmd = os.path.join(os.getcwd(), 'bin', 'buildout')
+    cmd = os.path.join('bin', 'buildout')
     if verbose:
         cmd += ' -v'
     print 'Running %s...' % cmd



More information about the checkins mailing list