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