summaryrefslogtreecommitdiff
path: root/src/backend/upgradePkg.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/upgradePkg.py')
-rw-r--r--src/backend/upgradePkg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/upgradePkg.py b/src/backend/upgradePkg.py
index ec46cda..5110499 100644
--- a/src/backend/upgradePkg.py
+++ b/src/backend/upgradePkg.py
@@ -8,7 +8,7 @@ import subprocess
import sys
import wget
import sisyphus.checkenv
-import sisyphus.getEnvironment
+import sisyphus.getenv
import sisyphus.getFilesystem
import sisyphus.killPortage
import sisyphus.resolveDeps
@@ -19,7 +19,7 @@ def cliExec():
if sisyphus.checkenv.root():
sisyphus.updateAll.cliExec()
- binhostURL = sisyphus.getEnvironment.binhostURL()
+ binhostURL = sisyphus.getenv.binhostURL()
areBinaries,areSources,needsConfig = sisyphus.resolveDeps.world()
if needsConfig == 0:
@@ -59,7 +59,7 @@ def cliExec():
sys.exit("\nYou need root permissions to do this, exiting!\n")
def guiExec():
- binhostURL = sisyphus.getEnvironment.binhostURL()
+ binhostURL = sisyphus.getenv.binhostURL()
areBinaries,areSources,needsConfig = sisyphus.resolveDeps.world.__wrapped__() #undecorate
if not len(areSources) == 0: