Skip to content

Commit

Permalink
openshift: properly report when release.txt cant be opened
Browse files Browse the repository at this point in the history
  • Loading branch information
karmab committed Jan 20, 2025
1 parent 194567e commit 8f7981e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kvirt/cluster/openshift/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def get_downstream_installer(version='stable', macosx=False, tag=None, debug=Fal
try:
r = urlopen(f"{url}/release.txt").readlines()
except:
error(f"Couldn't open url {url}")
error(f"Couldn't open url {url}/release.txt")
return 1
version = None
for line in r:
Expand Down

0 comments on commit 8f7981e

Please sign in to comment.