Skip to content

Commit

Permalink
Installers: Revert to pass PermissionError
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Feb 12, 2021
1 parent e151f28 commit 72bb5ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installers/Windows/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,8 @@ def run(python_version, bitness, repo_root, entrypoint, package, icon_path,
destination_dir,
)
print("Installer created!")
except PermissionError as e:
print(e.message())
except PermissionError:
pass


if __name__ == "__main__":
Expand Down

0 comments on commit 72bb5ec

Please sign in to comment.