(self, path)
| 60 | raise RuntimeError('Invalid argument "%s"' % name) |
| 61 | |
| 62 | def _check_path(self, path): |
| 63 | if not os.path.exists(path): |
| 64 | raise RuntimeError('This path %s does not exists' % path) |
| 65 | |
| 66 | def _format_path(self, path): |
| 67 | return path.strip('/') if sys.platform == 'win32' else path |
no outgoing calls
no test coverage detected