Skip to content

Commit

Permalink
Concat strings
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPeloton committed Nov 25, 2024
1 parent 4e65af3 commit 4d119fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def extract_configuration(filename):
if config["HOST"].endswith(".org"):
config["APIURL"] = "https://" + config["HOST"]
else:
config["APIURL"] = "http://" + config["HOST"] + ":" + config["PORT"]
config["APIURL"] = "http://" + config["HOST"] + ":" + str(config["PORT"])
return config

def download_cutout(objectId, candid, kind):
Expand Down

0 comments on commit 4d119fa

Please sign in to comment.