diff hgext/inotify/client.py @ 7145:6f4a253f2a64

inotify: fix status not showing "clean" files (issue907) The inotify server uses 'c' for clean, not 'n'.
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Sat, 18 Oct 2008 23:06:29 +0200
parents ab57069232b4
children 59b4ae211584
line wrap: on
line diff
--- a/hgext/inotify/client.py	Sat Oct 18 22:44:01 2008 +0200
+++ b/hgext/inotify/client.py	Sat Oct 18 23:06:29 2008 +0200
@@ -29,7 +29,7 @@
         states = 'almrx!'
         if ignored:
             raise ValueError('this is insanity')
-        if clean: states += 'n'
+        if clean: states += 'c'
         if unknown: states += '?'
         yield states