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:
883afdf
)
Fixing stupid bugs
author
Ramon van Alteren
<ramon@vanalteren.nl>
Thu, 5 Jan 2012 11:59:52 +0000
(12:59 +0100)
committer
Ramon van Alteren
<ramon@vanalteren.nl>
Thu, 5 Jan 2012 11:59:52 +0000
(12:59 +0100)
jobname is a var :(
and we need to pass a hexstring as md5hash not a binary
pyjenkinsci/jenkins.py
patch
|
blob
|
history
diff --git
a/pyjenkinsci/jenkins.py
b/pyjenkinsci/jenkins.py
index
73e05f0
..
ddd8b72
100644
(file)
--- a/
pyjenkinsci/jenkins.py
+++ b/
pyjenkinsci/jenkins.py
@@
-86,7
+86,7
@@
class Jenkins(JenkinsBase):
:param jobname: name of the job, str
:return: Job obj
"""
- return self[
'jobname'
]
+ return self[
jobname
]
def iteritems(self):
return self.get_jobs()