(path)
| 254 | |
| 255 | |
| 256 | def _rename_path(path): |
| 257 | new_name = path + '.OLD.%s' % time.time() |
| 258 | log.warn('Renaming %s into %s', path, new_name) |
| 259 | os.rename(path, new_name) |
| 260 | return new_name |
| 261 | |
| 262 | |
| 263 | def _remove_flat_installation(placeholder): |
no outgoing calls
no test coverage detected