Skip to content

Commit

Permalink
Fix partly unexcepted VolumeNotAvailableError when acquiring an acqui…
Browse files Browse the repository at this point in the history
…re (#87)

(DIS-2007)
  • Loading branch information
Poeloe authored Aug 10, 2023
1 parent 8d15a39 commit c3f22b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acquire/collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ def collect_file(
return

outpath = self._create_output_path(outpath or path, base)
entry = path.get()

try:
entry = path.get()
if volatile:
self.output.write_volatile(outpath, entry, size)
else:
Expand Down

0 comments on commit c3f22b7

Please sign in to comment.