fix(backup): swapped around some kwargs for add_repo (L109)
Some checks failed
Actions / Lint Code (Pylint) (pull_request) Failing after 15s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 11s

This commit is contained in:
Seaswimmer 2024-01-31 14:26:50 -05:00
parent 6dfeb97180
commit 417ee9bde4
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -106,7 +106,7 @@ class Backup(commands.Cog):
continue
try:
repository = await downloader._repo_manager.add_repo(name, url, branch) # pylint: disable=protected-access
repository = await downloader._repo_manager.add_repo(url, name, branch) # pylint: disable=protected-access
except errors.ExistingGitRepo:
repo_e.append(f"Repository {name} already exists.")