Skip to content

Commit

Permalink
Fix minor bug triggered by empty app (no files)
Browse files Browse the repository at this point in the history
  • Loading branch information
lowell80 committed Nov 17, 2023
1 parent fdb86df commit 736eea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ksconf/app/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ def load_manifest_for_archive(
sam = StoredArchiveManifest.from_json_manifest(archive, manifest_file,
permanent_archive=permanent_archive)
manifest = sam.manifest
except AppManifestStorageError as e:
except (AppManifestStorageError, AssertionError) as e:
log_callback(f"Loading stored manifest failed: {e}")

if manifest is None:
Expand Down

0 comments on commit 736eea1

Please sign in to comment.