Skip to content

Commit

Permalink
Fix global properties handling
Browse files Browse the repository at this point in the history
API name isn't 'mgmt.global.*' - discussed options are
'mgmt.global.property.*' or 'mgmt.property.*'. Lets settle on the
former.

QubesOS/qubes-issues#853
  • Loading branch information
marmarek committed Mar 9, 2017
1 parent 4ffd44d commit 6939604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesmgmt/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class QubesBase(qubesmgmt.base.PropertyHolder):
domains = None

def __init__(self):
super(QubesBase, self).__init__(self, 'mgmt.global.', 'dom0')
super(QubesBase, self).__init__(self, 'mgmt.global.property.', 'dom0')
self.domains = VMCollection(self)


Expand Down

0 comments on commit 6939604

Please sign in to comment.