tests/readlink.py
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Fri, 19 Dec 2008 18:24:49 +0100
changeset 7525 6a49fa7674c1
parent 5683 396c7010b0cd
child 10282 08a0f04b56bd
permissions -rwxr-xr-x
hgweb: mq repos should be in non-recursive collections, too

#!/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)