equal
deleted
inserted
replaced
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 |