summaryrefslogtreecommitdiff
path: root/virtinst/devicegraphics.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2013-09-11 11:47:09 -0400
committerCole Robinson <crobinso@redhat.com>2013-09-19 13:31:33 -0400
commit0be727e6bbd9684ceb64cc247e3c2b514f5ca645 (patch)
treeab6389acd80b9869e1aafa761cddaa66a48007aa /virtinst/devicegraphics.py
parent38545e3af88ee5bbe8c96612489fa0f740068608 (diff)
downloadvirt-manager-0be727e6bbd9684ceb64cc247e3c2b514f5ca645.tar.gz
xmlbuilder: Track singleton child properties explicitly
Things like Guest.Seclabel, VirtualDevice.VirtualAlias, etc. Now we don't need to track a full xpath with each class, just its root name and we build its hierarchy depending on its parent.
Diffstat (limited to 'virtinst/devicegraphics.py')
-rw-r--r--virtinst/devicegraphics.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/virtinst/devicegraphics.py b/virtinst/devicegraphics.py
index 63ca633a..781d97dd 100644
--- a/virtinst/devicegraphics.py
+++ b/virtinst/devicegraphics.py
@@ -94,8 +94,8 @@ class VirtualGraphics(VirtualDevice):
return str(gtype).capitalize()
- def __init__(self, conn, parsexml=None, parsexmlnode=None):
- VirtualDevice.__init__(self, conn, parsexml, parsexmlnode)
+ def __init__(self, *args, **kwargs):
+ VirtualDevice.__init__(self, *args, **kwargs)
self._local_keymap = -1