diff options
author | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-09-11 15:12:51 +0200 |
---|---|---|
committer | Alejandro Sirgo Rica <asirgo@soleta.eu> | 2024-09-11 15:12:51 +0200 |
commit | 6a96a130b5637625917b469a2376ad022df26867 (patch) | |
tree | 45199497fe26b9f565105f9249091ae3d280e550 /cli | |
parent | 268b76b3ea550531b6601fada4965aa17c2f57ac (diff) |
repo: fix repo update command prefix
Use the correct command prefix in the command function.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/objects/repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/objects/repo.py b/cli/objects/repo.py index 1a521c8..76760cb 100644 --- a/cli/objects/repo.py +++ b/cli/objects/repo.py @@ -37,7 +37,7 @@ class OgRepo(): @staticmethod def update_repo(rest, args): - parser = argparse.ArgumentParser(prog='ogcli add repo') + parser = argparse.ArgumentParser(prog='ogcli update repo') parser.add_argument('--id', type=int, nargs='?', |