diff options
Diffstat (limited to 'src/backend/updateAll.py')
-rw-r--r-- | src/backend/updateAll.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/updateAll.py b/src/backend/updateAll.py index c5809ab..41d4a3a 100644 --- a/src/backend/updateAll.py +++ b/src/backend/updateAll.py @@ -17,7 +17,7 @@ def syncAll(): sisyphus.syncDatabase.remoteTable() @animation.wait('fetching updates') -def start(): +def cliExec(): activeBranch = sisyphus.checkEnvironment.branch() binhostURL = sisyphus.getEnvironment.binhostURL() isSane = sisyphus.checkEnvironment.sanity() @@ -31,7 +31,7 @@ def start(): print("\nCurrent branch: '" + activeBranch + "' (testing)" + "\nCurrent binhost: '" + binhostURL + "' (stable)") sys.exit("\nInvalid branch - binhost pairing; Use 'sisyphus branch --help' for help; Quitting.") -def startqt(): +def guiExec(): activeBranch = sisyphus.checkEnvironment.branch() binhostURL = sisyphus.getEnvironment.binhostURL() isSane = sisyphus.checkEnvironment.sanity() |