Skip to content

Commit

Permalink
Fix path to ASpace file for permissions setting
Browse files Browse the repository at this point in the history
  • Loading branch information
tw4l committed Aug 5, 2023
1 parent 90f3fa9 commit 6a4aeaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diskimageprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def create_aspace_excel_sheet(args, sips, volumes, logger):
# Set ASpace file permissions
try:
os.chmod(
path,
xlsx_path,
stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP | stat.S_IROTH,
)
except OSError as err:
Expand Down

0 comments on commit 6a4aeaf

Please sign in to comment.