mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
fix console keymap auto related error
This commit is contained in:
parent
845c78c564
commit
74028f35b8
1 changed files with 1 additions and 1 deletions
|
@ -993,7 +993,7 @@ class wvmInstance(wvmConnect):
|
||||||
except SyntaxError:
|
except SyntaxError:
|
||||||
# Little fix for old version ElementTree
|
# Little fix for old version ElementTree
|
||||||
graphic = root.find("devices/graphics")
|
graphic = root.find("devices/graphics")
|
||||||
if keymap:
|
if keymap != 'auto':
|
||||||
graphic.set('keymap', keymap)
|
graphic.set('keymap', keymap)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue