# HG changeset patch # User Martin von Zweigbergk # Date 1498151398 25200 # Node ID bdf4227614e24b0a34a7edb80635533fca10cc1b # Parent a10f5f6771f67ac560e589c6a841fbebd573ca3d debugcommands: remove unused "all" argument from _debugobsmarkers diff -r a10f5f6771f6 -r bdf4227614e2 mercurial/debugcommands.py --- a/mercurial/debugcommands.py Fri Jun 23 22:15:22 2017 -0700 +++ b/mercurial/debugcommands.py Thu Jun 22 10:09:58 2017 -0700 @@ -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')),