AUTH-3185 fixed indention error

This commit is contained in:
Dalton 2020-10-21 12:14:39 -05:00
parent 3c13080fe1
commit 8e0be7cff1
1 changed files with 1 additions and 1 deletions

View File

@ -202,7 +202,7 @@ def main():
copy_path = os.path.join(artifact_path, args.name)
try:
shutil.copy(args.path, copy_path)
except shutil.SameFileError:
except shutil.SameFileError:
pass # the macOS release copy fails with being the same file (already in the artifacts directory). Catching to ignore.
except Exception as e: