Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
vmdriver
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
dff8b9fc
authored
Nov 12, 2013
by
Guba Sándor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vmdriver: adding key name to list_domains_info
parent
1e442b1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
vmdriver.py
+3
-1
No files found.
vmdriver.py
View file @
dff8b9fc
...
...
@@ -220,7 +220,9 @@ def list_domains_info():
domain_list
=
[]
for
i
in
Connection
.
get
()
.
listDomainsID
():
dom
=
Connection
.
get
()
.
lookupByID
(
i
)
domain_list
.
append
(
_parse_info
(
dom
.
info
()))
domain_dict
=
_parse_info
(
dom
.
info
())
domain_dict
[
'name'
]
=
dom
.
name
()
domain_list
.
append
(
domain_dict
)
return
domain_list
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment