diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-06-06 19:32:48 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-06-06 19:32:48 +0100 |
commit | 2d86cd9ddc5d9442e4a8e8fb50d72480a8293a4a (patch) | |
tree | 59cecf3bc71168b7a32b449aac436b0474147525 /src/backend/update.py | |
parent | 1ec0c210ca2cbdb729a416e37a50d4b9a6a0dfa0 (diff) |
minor fixes, make the gui client work with the new backend
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 dd184d2..738de3a 100644 --- a/src/backend/update.py +++ b/src/backend/update.py @@ -1,8 +1,8 @@ #!/usr/bin/python3 import animation +import sisyphus.cache import sisyphus.check -import sisyphus.clean import sisyphus.database import sisyphus.metadata import sisyphus.sync @@ -10,7 +10,7 @@ import sisyphus.sync @animation.wait('fetching updates') def start(): sisyphus.check.root() - sisyphus.clean.cache() + sisyphus.cache.clean() needsPortage = sisyphus.check.portage() needsOverlay = sisyphus.check.overlay() |