mercurial/debugcommands.py
changeset 31402 ea0395eec67b
parent 31239 9cdba6072b97
child 31451 53865692a354
equal deleted inserted replaced
31401:ed23f929af38 31402:ea0395eec67b
  1125     ui.write("%s\n" % ("".join([f and "1" or "0" for f in flags])))
  1125     ui.write("%s\n" % ("".join([f and "1" or "0" for f in flags])))
  1126 
  1126 
  1127 @command('debuglabelcomplete', [], _('LABEL...'))
  1127 @command('debuglabelcomplete', [], _('LABEL...'))
  1128 def debuglabelcomplete(ui, repo, *args):
  1128 def debuglabelcomplete(ui, repo, *args):
  1129     '''backwards compatibility with old bash completion scripts (DEPRECATED)'''
  1129     '''backwards compatibility with old bash completion scripts (DEPRECATED)'''
  1130     commands.debugnamecomplete(ui, repo, *args)
  1130     debugnamecomplete(ui, repo, *args)
  1131 
  1131 
  1132 @command('debuglocks',
  1132 @command('debuglocks',
  1133          [('L', 'force-lock', None, _('free the store lock (DANGEROUS)')),
  1133          [('L', 'force-lock', None, _('free the store lock (DANGEROUS)')),
  1134           ('W', 'force-wlock', None,
  1134           ('W', 'force-wlock', None,
  1135            _('free the working state lock (DANGEROUS)'))],
  1135            _('free the working state lock (DANGEROUS)'))],