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