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