Skip to content

Commit 857b6bf

Browse files
committed
Fix unassigned variable
1 parent 4556f13 commit 857b6bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyatsimagebuilder/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ def discover_manifests(search_path, ignore_folders=None, relative_path=None,
470470

471471
jobs.append(manifest_data)
472472

473-
except Exception:
473+
except Exception as e:
474474
logger.error('Error processing manifest file {}\n{}'.format(
475475
manifest, str(e)))
476476
continue

0 commit comments

Comments
 (0)