Exception raised when a package can not be located.
| 21 | return self.msg |
| 22 | |
| 23 | class PkgNotFound(OSError): |
| 24 | """Exception raised when a package can not be located.""" |
| 25 | def __init__(self, msg): |
| 26 | self.msg = msg |
| 27 | |
| 28 | def __str__(self): |
| 29 | return self.msg |
| 30 | |
| 31 | def parse_flags(line): |
| 32 | """ |