Mercurial > hg
view tests/svnurlof.py @ 42233:4ad191041be2
histedit: Show file names in multiple line format
author | Yu Feng <rainwoodman@gmail.com> |
---|---|
date | Thu, 02 May 2019 16:43:34 -0700 |
parents | eb6700e6c5ea |
children | 2372284d9457 |
line wrap: on
line source
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)