hgext/inotify/__init__.py
changeset 10282 08a0f04b56bd
parent 10264 d6512b3e9ac0
child 10463 5ddde896a19d
equal deleted inserted replaced
10281:e7d3b509af8b 10282:08a0f04b56bd
    58                     pass
    58                     pass
    59                 else:
    59                 else:
    60                     if ui.config('inotify', 'debug'):
    60                     if ui.config('inotify', 'debug'):
    61                         r2 = super(inotifydirstate, self).status(
    61                         r2 = super(inotifydirstate, self).status(
    62                             match, False, clean, unknown)
    62                             match, False, clean, unknown)
    63                         for c,a,b in zip('LMARDUIC', result, r2):
    63                         for c, a, b in zip('LMARDUIC', result, r2):
    64                             for f in a:
    64                             for f in a:
    65                                 if f not in b:
    65                                 if f not in b:
    66                                     ui.warn('*** inotify: %s +%s\n' % (c, f))
    66                                     ui.warn('*** inotify: %s +%s\n' % (c, f))
    67                             for f in b:
    67                             for f in b:
    68                                 if f not in a:
    68                                 if f not in a: