/usr/share/pyshared/firmwaretools/errors.py is in firmware-tools-common 2.1.14-0ubuntu1.
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 7 8 | # vim:expandtab:autoindent:tabstop=4:shiftwidth=4:filetype=python:tw=0
import exceptions
class BaseError(exceptions.Exception): pass
class ConfigError(BaseError): pass
class LockError(BaseError): pass
|