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:
2a2960b
)
Fix a typo in a function name in queing
author
Julien Pivotto
<roidelapluie@inuits.eu>
Thu, 16 Oct 2014 19:39:08 +0000
(21:39 +0200)
committer
Julien Pivotto
<roidelapluie@inuits.eu>
Thu, 16 Oct 2014 19:40:05 +0000
(21:40 +0200)
Replacing iterivalues() by itervalues(), and then fixing the values()
function of Queue object.
jenkinsapi/queue.py
patch
|
blob
|
history
diff --git
a/jenkinsapi/queue.py
b/jenkinsapi/queue.py
index d0efc5ba4d40f7c02207aa699d3844b2c8381196..ff67783c235b2e791bc3e325b1eb9fe4cf0feaad 100644
(file)
--- a/
jenkinsapi/queue.py
+++ b/
jenkinsapi/queue.py
@@
-37,7
+37,7
@@
class Queue(JenkinsBase):
for item in self._data['items']:
yield item['id']
- def iter
i
values(self):
+ def itervalues(self):
for item in self._data['items']:
yield QueueItem(self.jenkins, **item)