backup: fix handling labels in Qubes 4.0 backups

Labels can be referred as either id or name. Support both ways.

Fixes QubesOS/qubes-issues#3211
这个提交包含在:
Marek Marczykowski-Górecki 2017-10-29 02:58:37 +02:00
父节点 7bcab46f96
当前提交 7f728e2dad
找不到此签名对应的密钥
GPG 密钥 ID: 063938BA42CFA724

查看文件

@ -77,6 +77,7 @@ class Core3Qubes(qubesadmin.backup.BackupApp):
ident = node.get('id')
assert ident is not None
self.labels[ident] = node.text
self.labels[node.text] = node.text
def load_globals(self, globals_element):