Skip to content

Commit 4b23aa8

Browse files
Fix types in concatenation
1 parent c9def4b commit 4b23aa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homu/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def fetch_rust_team(repo_label, level):
1414
return resp.json()["github_ids"]
1515
except requests.exceptions.RequestException as e:
1616
msg = "error while fetching " + url
17-
msg += " (try " + retry + "): " + str(e)
17+
msg += " (try " + str(retry) + "): " + str(e)
1818
print(msg)
1919
continue
2020
return []

0 commit comments

Comments
 (0)