tests/svnurlof.py
author Manuel Jacob <me@manueljacob.de>
Thu, 04 Jun 2020 06:44:00 +0200
changeset 45012 484e04dc7f42
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
ui: replace `self._ferr` with identical `dest` Originally, it was part of a larger change that was abandoned. IMHO it makes the code slightly cleaner and saves one attribute access, so I decided to send it anyway instead of throwing it away.

from __future__ import absolute_import, print_function
import sys

from mercurial import (
    pycompat,
    util,
)


def main(argv):
    enc = util.urlreq.quote(pycompat.sysbytes(argv[1]))
    if pycompat.iswindows:
        fmt = 'file:///%s'
    else:
        fmt = 'file://%s'
    print(fmt % pycompat.sysstr(enc))


if __name__ == '__main__':
    main(sys.argv)