Browse Source

restore.py: don't try to restore dispid property

Rusty Bird 6 years ago
parent
commit
01ce5387d3
1 changed files with 2 additions and 0 deletions
  1. 2 0
      qubesadmin/backup/restore.py

+ 2 - 0
qubesadmin/backup/restore.py

@@ -1872,6 +1872,8 @@ class BackupRestore(object):
                 continue
 
             for prop, value in vm.properties.items():
+                if prop == 'dispid':
+                    continue
                 # exclude VM references - handled manually according to
                 # restore options
                 if prop in ['template', 'netvm', 'default_dispvm']: