projects
/
osm
/
vim-emu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa4bcc7
)
small bugfix, list should return a list not a iterator
author
peusterm
<manuel.peuster@uni-paderborn.de>
Fri, 15 Jan 2016 10:12:17 +0000
(11:12 +0100)
committer
peusterm
<manuel.peuster@uni-paderborn.de>
Fri, 15 Jan 2016 10:12:17 +0000
(11:12 +0100)
emuvim/dcemulator/node.py
patch
|
blob
|
history
diff --git
a/emuvim/dcemulator/node.py
b/emuvim/dcemulator/node.py
index
d506930
..
0e6eae8
100644
(file)
--- a/
emuvim/dcemulator/node.py
+++ b/
emuvim/dcemulator/node.py
@@
-133,4
+133,4
@@
class Datacenter(object):
Return a list of all running containers assigned to this
data center.
"""
- return
self.containers.itervalues(
)
+ return
list(self.containers.itervalues()
)