Skip to content

Commit

Permalink
Fix specifying graphics type
Browse files Browse the repository at this point in the history
  • Loading branch information
awiddersheim committed Nov 1, 2016
1 parent 7fab696 commit 5edef03
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion koan/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ def main():
p.add_option(
"-g",
"--graphics",
action="store_true",
dest="gfx_type",
help="specify the graphics type: vnc, sdl, spice, none"
)
Expand Down
2 changes: 1 addition & 1 deletion koan/virtinstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ def build_commandline(uri,
if gfx_type is None:
cmd += "--nographics "
else:
cmd += "--%s " % gfx_type
cmd += "--graphics %s " % gfx_type

if is_qemu and virt_type:
if not disable_virt_type:
Expand Down

0 comments on commit 5edef03

Please sign in to comment.