Make Windows paths like Unix.
(self)
| 1562 | self._filename = filename |
| 1563 | |
| 1564 | def FullName(self): |
| 1565 | """Make Windows paths like Unix.""" |
| 1566 | return os.path.abspath(self._filename).replace('\\', '/') |
| 1567 | |
| 1568 | def RepositoryName(self): |
| 1569 | r"""FullName after removing the local path to the repository. |
no outgoing calls
no test coverage detected