changeset 33811:bdf4227614e2

debugcommands: remove unused "all" argument from _debugobsmarkers
author Martin von Zweigbergk <martinvonz@google.com>
date Thu, 22 Jun 2017 10:09:58 -0700
parents a10f5f6771f6
children b482d80e041b
files mercurial/debugcommands.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/debugcommands.py
+++ b/mercurial/debugcommands.py
@@ -289,7 +289,7 @@
             ui.write("%s%s\n" % (indent_string, hex(node)))
             chain = node
 
-def _debugobsmarkers(ui, data, all=None, indent=0, **opts):
+def _debugobsmarkers(ui, data, indent=0, **opts):
     """display version and markers contained in 'data'"""
     indent_string = ' ' * indent
     try:
@@ -325,7 +325,7 @@
             cg = changegroup.getunbundler(version, part, 'UN')
             _debugchangegroup(ui, cg, all=all, indent=4, **opts)
         if part.type == 'obsmarkers':
-            _debugobsmarkers(ui, part.read(), all=all, indent=4, **opts)
+            _debugobsmarkers(ui, part.read(), indent=4, **opts)
 
 @command('debugbundle',
         [('a', 'all', None, _('show all details')),