rename repo.list into repo._list

This commit is contained in:
Lephenixnoir 2021-01-08 13:52:21 +01:00
parent 0b07b76bcd
commit 7d435b6432
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
2 changed files with 2 additions and 2 deletions

View File

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

View File

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