# HG changeset patch # User Anton Shestakov # Date 2023-05-31 15:01:25 # Node ID 720a23405fe9264bda5205f78688a5dc3e3e07ad # Parent 0034181631959e6b152c5f9dfae8c2536c8557c0 debug: update usage strings of debugignore and debugnodemap Multiple files can be specified for debugignore. debugnodemap does not take a revision argument. diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -1845,7 +1845,7 @@ def debuggetbundle(ui, repopath, bundlep bundle2.writebundle(ui, bundle, bundlepath, bundletype) -@command(b'debugignore', [], b'[FILE]') +@command(b'debugignore', [], b'[FILE]...') def debugignore(ui, repo, *files, **opts): """display the combined ignore pattern and information about ignored files @@ -2628,7 +2628,7 @@ def debugnamecomplete(ui, repo, *args): ), ] ), - _(b'-c|-m|FILE REV'), + _(b'-c|-m|FILE'), ) def debugnodemap(ui, repo, file_=None, **opts): """write and inspect on disk nodemap"""