Skip to content

Commit a84f60b

Browse files
authored
Fix missing splat operator in pip_install() call
1 parent 09817c3 commit a84f60b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redbot/cogs/downloader/downloader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async def pipinstall(self, ctx: commands.Context, *deps: str) -> None:
7272
- `<deps...>` The package or packages you wish to install.
7373
"""
7474
async with ctx.typing():
75-
success = await _downloader.pip_install(deps)
75+
success = await _downloader.pip_install(*deps)
7676

7777
if success:
7878
await ctx.send(_("Libraries installed.") if len(deps) > 1 else _("Library installed."))

0 commit comments

Comments
 (0)