mercurial/commands.py
changeset 42187 90d48c1c6224
parent 42156 496ac8a02380
child 42202 8d14d91584f1
equal deleted inserted replaced
42186:fd384911f51b 42187:90d48c1c6224
  6165     for more information about recovery from corruption of the
  6165     for more information about recovery from corruption of the
  6166     repository.
  6166     repository.
  6167 
  6167 
  6168     Returns 0 on success, 1 if errors are encountered.
  6168     Returns 0 on success, 1 if errors are encountered.
  6169     """
  6169     """
       
  6170     opts = pycompat.byteskwargs(opts)
       
  6171 
  6170     level = None
  6172     level = None
  6171     if opts['full']:
  6173     if opts['full']:
  6172         level = verifymod.VERIFY_FULL
  6174         level = verifymod.VERIFY_FULL
  6173     return hg.verify(repo, level)
  6175     return hg.verify(repo, level)
  6174 
  6176