diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-25 23:58:10 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-25 23:58:10 +0100 |
commit | 3a0e9fe9197a931c1f10208d7690b9d72ac42530 (patch) | |
tree | 7d7e00d86d4692aaf8ca613fa98cdf222c11b82b /src/backend/recoverDatabase.py | |
parent | 382526fe605683e67f979e26d48b2889230efb6c (diff) |
again : meaningful function names
Diffstat (limited to 'src/backend/recoverDatabase.py')
-rw-r--r-- | src/backend/recoverDatabase.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/recoverDatabase.py b/src/backend/recoverDatabase.py index a17c9f1..03e57a2 100644 --- a/src/backend/recoverDatabase.py +++ b/src/backend/recoverDatabase.py @@ -16,5 +16,5 @@ def start(): if os.path.exists(sisyphus.getFilesystem.localDatabase): os.remove(sisyphus.getFilesystem.localDatabase) - sisyphus.syncDatabase.syncRemote() - sisyphus.syncDatabase.syncLocal() + sisyphus.syncDatabase.remoteTable() + sisyphus.syncDatabase.localTable() |