Copy an existing file CANONICAL_TEMP_DIR.
(src, name)
| 1325 | |
| 1326 | |
| 1327 | def save_intermediate(src, name): |
| 1328 | """Copy an existing file CANONICAL_TEMP_DIR.""" |
| 1329 | if DEBUG: |
| 1330 | shutil.copyfile(src, new_intermediate_filename(name)) |
| 1331 | |
| 1332 | |
| 1333 | def write_intermediate(content, name): |
no test coverage detected