Skip to content

Commit 8480d61

Browse files
committed
Fix wrong argument being passed to _update_cogs
1 parent 960990e commit 8480d61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redbot/core/_downloader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ async def update_repo_cogs(
701701
try:
702702
await repo.update()
703703
except errors.UpdateError:
704-
return await _update_cogs(set(), failed_repos=[repo])
704+
return await _update_cogs(set(), failed_repos=(repo.name,))
705705

706706
# TODO: should this be set to `repo.branch` when `rev` is None?
707707
commit = None

0 commit comments

Comments
 (0)