Skip to content

Commit

Permalink
Proccess review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Poeloe committed Sep 10, 2024
1 parent 655d83f commit de637b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dissect/target/tools/mount.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,9 @@ def main():
log.info("Mounting to %s with options: %s", args.mount, _format_options(options))
try:
FUSE(DissectMount(vfs), args.mount, **options)
except RuntimeError:
except RuntimeError as e:
log.error("Mounting target %s failed", t)
log.debug("", exc_info=e)
parser.exit(1)

Check warning on line 119 in dissect/target/tools/mount.py

View check run for this annotation

Codecov / codecov/patch

dissect/target/tools/mount.py#L116-L119

Added lines #L116 - L119 were not covered by tests


Expand Down

0 comments on commit de637b2

Please sign in to comment.