view tests/svnurlof.py @ 49398:98645c1bfeaa stable

packaging: bump dulwich to 0.20.45 I'm told the new dulwich avoids hg-git test failures.
author Matt Harbison <matt_harbison@yahoo.com>
date Tue, 19 Jul 2022 18:40:20 -0400
parents 6000f5b25c9b
children
line wrap: on
line source

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)