[Scipy-svn] r4710 - trunk/tools/win32/build_scripts

scipy-svn at scipy.org scipy-svn at scipy.org
Tue Sep 9 13:13:19 EDT 2008


Author: cdavid
Date: 2008-09-09 12:12:59 -0500 (Tue, 09 Sep 2008)
New Revision: 4710

Modified:
   trunk/tools/win32/build_scripts/prepare_bootstrap.py
Log:
Fix mising dot between release version and dev.


Modified: trunk/tools/win32/build_scripts/prepare_bootstrap.py
===================================================================
--- trunk/tools/win32/build_scripts/prepare_bootstrap.py	2008-09-09 17:12:17 UTC (rev 4709)
+++ trunk/tools/win32/build_scripts/prepare_bootstrap.py	2008-09-09 17:12:59 UTC (rev 4710)
@@ -57,7 +57,7 @@
             
     verstr = ".".join([str(i) for i in version])
     if isdev:
-        verstr += "dev"
+        verstr += ".dev"
     return verstr
 
 if __name__ == '__main__':




More information about the Scipy-svn mailing list