tests/svnurlof.py
author Gregory Szorc <gregory.szorc@gmail.com>
Thu, 26 Aug 2021 20:01:01 -0700
branchstable
changeset 47883 feb1b2b8eeec
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
contrib: install PyOxidizer 0.17.0 This pulls in some changes we want to improve Windows MSI installers. This will need separate enhancements to the pyoxidizer.bzl. But those will be handled in a separate changeset. Differential Revision: https://phab.mercurial-scm.org/D11357

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)