Update terminal.py

pull/102/head
Plovchikdeval 2025-02-17 16:09:11 +05:00 committed by GitHub
parent 32afe153f8
commit c5cedc704d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ class TerminalMod(loader.Module):
async def pipcmd(self, message):
await self.run_command(
message,
("pip " if os.geteuid() == 0 else "sudo -S apt ")
("pip " if os.geteuid() == 0 else "sudo -S pip ")
+ utils.get_args_raw(message)
)