diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:14:09 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:14:09 +0000 |
commit | aaf45e0a3c06c7affeae2b412bb8db99e9ce3d86 (patch) | |
tree | fad75c483afa128e43644a9e90387d52e693aaf1 /src/backend/recoverdb.py | |
parent | fafff14908697a1e1d45cd8db1be2fe5cf8a4153 (diff) |
move syncDatabase -> syncdb
Diffstat (limited to 'src/backend/recoverdb.py')
-rw-r--r-- | src/backend/recoverdb.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/recoverdb.py b/src/backend/recoverdb.py index c429340..3c5cb78 100644 --- a/src/backend/recoverdb.py +++ b/src/backend/recoverdb.py @@ -3,7 +3,7 @@ import animation import os import sisyphus.getfs -import sisyphus.syncDatabase +import sisyphus.syncdb @animation.wait('recovering databases') def cliExec(): @@ -16,5 +16,5 @@ def cliExec(): if os.path.exists(sisyphus.getfs.localDatabase): os.remove(sisyphus.getfs.localDatabase) - sisyphus.syncDatabase.remoteTable() - sisyphus.syncDatabase.localTable() + sisyphus.syncdb.remoteTable() + sisyphus.syncdb.localTable() |