fix(backup): swapped around some kwargs for add_repo (L109)
This commit is contained in:
parent
6dfeb97180
commit
417ee9bde4
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ class Backup(commands.Cog):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
try:
|
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:
|
except errors.ExistingGitRepo:
|
||||||
repo_e.append(f"Repository {name} already exists.")
|
repo_e.append(f"Repository {name} already exists.")
|
||||||
|
|
Loading…
Reference in a new issue