##// END OF EJS Templates
inotify: fix status not showing "clean" files (issue907)...
inotify: fix status not showing "clean" files (issue907) The inotify server uses 'c' for clean, not 'n'.

File last commit:

r5683:396c7010 default
r7145:6f4a253f default
Show More
readlink.py
12 lines | 231 B | text/x-python | PythonLexer
#!/usr/bin/env python
import errno, os, sys
for f in sys.argv[1:]:
try:
print f, '->', os.readlink(f)
except OSError, err:
if err.errno != errno.EINVAL: raise
print f, 'not a symlink'
sys.exit(0)