Make Windows paths like Unix.
(self)
| 883 | self._filename = filename |
| 884 | |
| 885 | def FullName(self): |
| 886 | """Make Windows paths like Unix.""" |
| 887 | return os.path.abspath(self._filename).replace('\\', '/') |
| 888 | |
| 889 | def RepositoryName(self): |
| 890 | """FullName after removing the local path to the repository. |
no outgoing calls
no test coverage detected