##// END OF EJS Templates
inotify: Do not raise TypeError when client.query returns None...
Nicolas Dumazet -
r8069:82e28c7b default
parent child Browse files
Show More
@@ -58,7 +58,7 b' def reposetup(ui, repo):'
58 if not ignored and not self.inotifyserver:
58 if not ignored and not self.inotifyserver:
59 result = client.query(ui, repo, files, match, False,
59 result = client.query(ui, repo, files, match, False,
60 clean, unknown)
60 clean, unknown)
61 if ui.config('inotify', 'debug'):
61 if result and ui.config('inotify', 'debug'):
62 r2 = super(inotifydirstate, self).status(
62 r2 = super(inotifydirstate, self).status(
63 match, False, clean, unknown)
63 match, False, clean, unknown)
64 for c,a,b in zip('LMARDUIC', result, r2):
64 for c,a,b in zip('LMARDUIC', result, r2):
General Comments 0
You need to be logged in to leave comments. Login now