[sylvain] r51066 - monteur/silva/trunk

[email protected] Mon, 2 Sep 2013 12:56:57 +0200 (CEST)
Newsgroups gmane.comp.web.zope.silva.cvs
Message-ID <[email protected]>
Author: sylvain
Date: Mon Sep  2 12:56:57 2013
New Revision: 51066

Modified:
   monteur/silva/trunk/bootstrap.py
Log:
Update bootstrap.


Modified: monteur/silva/trunk/bootstrap.py
==============================================================================
--- monteur/silva/trunk/bootstrap.py	(original)
+++ monteur/silva/trunk/bootstrap.py	Mon Sep  2 12:56:57 2013
@@ -9,9 +9,9 @@
 import tempfile
 import urllib2
 
-BASE_URL='https://github.com/thefunny42/Zeam-Setup/tarball/'
+BASE_URL='https://github.com/thefunny42/Zeam-Setup/archive/'
 PREFIX='.monteur'
-VERSION='0.1b8'
+VERSION='0.1b10'
 
 # Helper directories
 
@@ -39,7 +39,7 @@
     tarball_file = os.path.join(download_dir, 'monteur-' + VERSION + '.tar.gz')
     if not os.path.isfile(tarball_file):
         try:
-            data = urllib2.urlopen(BASE_URL + version)
+            data = urllib2.urlopen(BASE_URL + version + '.tar.gz')
             tmp_file = tempfile.mkstemp('zeam.setup.bootstrap')[1]
             stream = open(tmp_file, 'w')
             stream.write(data.read())