bundles/zfs: fix typo
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit
Some checks failed
kunsi/bundlewrap/pipeline/head There was a failure building this commit
This commit is contained in:
parent
c9054a243a
commit
b5f93ceb48
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue