tests/svnurlof.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 14 Jan 2022 10:25:45 -0800
changeset 48582 0dc698c91ca0
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
rust: upgrade `rand*` crates `test-check-cargo-lock.t` is failing for me and I was hoping this would help. It doesn't, but we might as well take the upgrade now that I've done the (small amount of) work for it. Differential Revision: https://phab.mercurial-scm.org/D12000

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)