This file is indexed.

/usr/share/pyshared/Eikazo/SaneError.py is in eikazo 0.5.2-8.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
# too tirvial: no copyright ;)
class SaneError(Exception):
    def __init__(self, value):
        self.value = value
    def __str__(self):
        return self.value