summaryrefslogtreecommitdiff
path: root/src/frontend/cli/sisyphus-cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-rwxr-xr-xsrc/frontend/cli/sisyphus-cli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py
index 3124fd0..4a514c8 100755
--- a/src/frontend/cli/sisyphus-cli.py
+++ b/src/frontend/cli/sisyphus-cli.py
@@ -277,12 +277,12 @@ def sysinfo():
@mirrorSetup.command("list")
def mirrorlist():
"""List available binary package repository mirrors (the active one is marked with *)."""
- sisyphus.setMirror.printList()
+ sisyphus.mirrors.printList()
@mirrorSetup.command("set")
def mirrorset(index: int):
"""Change the binary package repository to the selected mirror."""
- sisyphus.setMirror.setActive(index)
+ sisyphus.mirrors.setActive(index)
if __name__ == "__main__":
if len(sys.argv) > 1 and not '--help' in sys.argv: