Skip to content

Commit

Permalink
fixed disk export location
Browse files Browse the repository at this point in the history
  • Loading branch information
zenmonkeykstop committed Jul 23, 2019
1 parent 0ed4954 commit 8806ea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion securedrop_export/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def copy_submission(self):
target_path = os.path.join(self.mountpoint, self.target_dirname)
subprocess.check_call(["mkdir", target_path])
export_data = os.path.join(
self.tmpdir, self.submission_dirname, "export_data/"
self.tmpdir, "export_data/"
)
subprocess.check_call(["cp", "-r", export_data, target_path])
self.popup_message("Files exported successfully to disk.")
Expand Down

0 comments on commit 8806ea1

Please sign in to comment.