bundles/zfs: fix typo
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit

This commit is contained in:
Franzi 2022-01-05 10:03:54 +01:00
parent c9054a243a
commit b5f93ceb48
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -36,7 +36,7 @@ for line in check_output(['zfs', 'list', '-H', '-o', 'name']).splitlines():
line = line.decode('UTF-8') line = line.decode('UTF-8')
for prefix in metadata.get('snapshot_never', set()): for prefix in metadata.get('snapshot_never', set()):
if dataset.startswith(prefix): if line.startswith(prefix):
break break
else: else:
datasets.add(line) datasets.add(line)