mirror of
https://git.planet-casio.com/Lephenixnoir/GiteaPC.git
synced 2024-12-28 04:23:40 +01:00
rename repo.list into repo._list
This commit is contained in:
parent
0b07b76bcd
commit
7d435b6432
2 changed files with 2 additions and 2 deletions
|
@ -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": {
|
||||||
|
|
|
@ -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")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue