projects
/
tools
/
python-jenkinsapi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
29021bb
)
correct the name of the downloady thing
author
salimfadhley
<sal@stodge.org>
Fri, 14 Jun 2013 22:35:16 +0000
(23:35 +0100)
committer
salimfadhley
<sal@stodge.org>
Fri, 14 Jun 2013 22:35:16 +0000
(23:35 +0100)
jenkinsapi_utils/jenkins_launcher.py
patch
|
blob
|
history
diff --git
a/jenkinsapi_utils/jenkins_launcher.py
b/jenkinsapi_utils/jenkins_launcher.py
index 21eb231b30cf9dcd74b85ab19c328d8f072535d8..3b3c34177fdd1f5624c753e73896940979ca0e69 100644
(file)
--- a/
jenkinsapi_utils/jenkins_launcher.py
+++ b/
jenkinsapi_utils/jenkins_launcher.py
@@
-58,7
+58,7
@@
class JenkinsLancher(object):
with io.open(self.war_path, 'wb') as war_file:
log.info("Downloading the Jenkins WAR file")
war_response = requests.get(self.JENKINS_WAR_URL)
- war_file.write(war_response.
read()
)
+ war_file.write(war_response.
text
)
log.info('Done!')
os.chdir(self.war_directory)