mercurial/sparse.py
changeset 33499 0407a51b9d8c
parent 33447 6f4e5e5940a5
child 33550 32f348d741e5
equal deleted inserted replaced
33498:b7a75b9a3386 33499:0407a51b9d8c
   104                 msg = (
   104                 msg = (
   105                     "warning: sparse profile '%s' not found "
   105                     "warning: sparse profile '%s' not found "
   106                     "in rev %s - ignoring it\n" % (profile, ctx))
   106                     "in rev %s - ignoring it\n" % (profile, ctx))
   107                 # experimental config: sparse.missingwarning
   107                 # experimental config: sparse.missingwarning
   108                 if repo.ui.configbool(
   108                 if repo.ui.configbool(
   109                         'sparse', 'missingwarning', True):
   109                         'sparse', 'missingwarning'):
   110                     repo.ui.warn(msg)
   110                     repo.ui.warn(msg)
   111                 else:
   111                 else:
   112                     repo.ui.debug(msg)
   112                     repo.ui.debug(msg)
   113                 continue
   113                 continue
   114 
   114