rename repo.list into repo._list

This commit is contained in:
Lephenixnoir 2021-01-08 13:52:21 +01:00
parent 0b07b76bcd
commit 7d435b6432
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495
2 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@ def usage(exitcode=None):
commands = { commands = {
"list": { "list": {
"function": giteapc.repo.list, "function": giteapc.repo._list,
"args": "remote:-r,--remote", "args": "remote:-r,--remote",
}, },
"fetch": { "fetch": {

View file

@ -118,7 +118,7 @@ def make_config(name, version, config):
# repo list command # repo list command
# #
def list(*args, remote=False): def _list(*args, remote=False):
if len(args) > 1: if len(args) > 1:
return fatal("repo list: too many arguments") return fatal("repo list: too many arguments")