(path, source)
| 169 | |
| 170 | |
| 171 | def open_mapping_file(path, source): |
| 172 | try: |
| 173 | f = open(path) |
| 174 | except IOError: |
| 175 | raise SystemExit(f'{source} is needed') |
| 176 | return f |
| 177 | |
| 178 | |
| 179 | def print_autogen(fo, source): |
no test coverage detected
searching dependent graphs…