view tests/readlink.py @ 51787:73b9558a0c56

manifest: use read_delta_new_entries in verify too This seems like the proper semantic for the usage.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 06 Aug 2024 02:09:33 +0200
parents 6000f5b25c9b
children
line wrap: on
line source

#!/usr/bin/env python3


import errno
import os
import sys

for f in sys.argv[1:]:
    try:
        print(f, '->', os.readlink(f))
    except OSError as err:
        if err.errno != errno.EINVAL:
            raise
        print(f, '->', f, 'not a symlink')

sys.exit(0)