diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 14:44:24 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 14:44:24 +0000 |
commit | e72b313f2d5e7c76fc98d0da256b769a5459f94d (patch) | |
tree | 2308507cad4656abc59c7134e6074573700851c9 /src/frontend | |
parent | d5fcb065ad5442e20517ff35508c6b4b8ca59ef1 (diff) |
move installPkg -> installpkg
Diffstat (limited to 'src/frontend')
-rwxr-xr-x | src/frontend/cli/sisyphus-cli.py | 2 | ||||
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py index b8de9d8..52afc3f 100755 --- a/src/frontend/cli/sisyphus-cli.py +++ b/src/frontend/cli/sisyphus-cli.py @@ -124,7 +124,7 @@ def install(pkgname: List[str], ebuild: bool = typer.Option(False, "--ebuild", " You can use the --ebuild option even if you don't want to install any ebuild(source) packages; It will fall back to binary packages only. """ if not ebuild: - sisyphus.installPkg.cliExec(pkgname) + sisyphus.installpkg.cliExec(pkgname) else: sisyphus.installSrc.cliExec(pkgname) diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index e2b31ad..7b0b4ff 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -398,7 +398,7 @@ class MainWorker(QtCore.QObject): def startInstall(self): self.started.emit() pkgname = Sisyphus.pkgname - sisyphus.installPkg.guiExec(pkgname) + sisyphus.installpkg.guiExec(pkgname) self.finished.emit() @QtCore.pyqtSlot() |