stages/containers.storage.conf: fix filename prop

The schema said `filename` but we were accessing `location`. Ups.
This commit is contained in:
Christian Kellner 2022-07-22 16:26:07 +02:00
parent 6fee1051c7
commit 184ed2d71b

View file

@ -149,7 +149,7 @@ def write_comment(f, comment: list):
def main(tree, options):
location = options.get("location", DEFAULT_LOCATION)
location = options.get("filename", DEFAULT_LOCATION)
config = options["config"]
comment = options.get("comment", [])