Return the contents of the named file
(fn)
| 512 | sys.exit(1) |
| 513 | |
| 514 | def fileContents(fn): |
| 515 | """ |
| 516 | Return the contents of the named file |
| 517 | """ |
| 518 | return open(fn, 'r').read() |
| 519 | |
| 520 | def runCommand(commandline): |
| 521 | """ |
no test coverage detected
searching dependent graphs…