From e72b313f2d5e7c76fc98d0da256b769a5459f94d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 30 Oct 2022 14:44:24 +0000 Subject: move installPkg -> installpkg --- src/frontend/cli/sisyphus-cli.py | 2 +- src/frontend/gui/sisyphus-gui.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/frontend') 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() -- cgit v1.2.3