tests/svnurlof.py
author Navaneeth Suresh <navaneeths1998@gmail.com>
Thu, 01 Aug 2019 22:03:52 +0530
changeset 42672 51a2e3102db2
parent 41480 eb6700e6c5ea
child 43076 2372284d9457
permissions -rw-r--r--
config: add defaultvalue template keyword This patch tries to fix one of the issues mentioned in issue6014. This adds a new `defaultvalue` template keyword to be used with `hg showconfig` to get the default value of the config item. Differential Revision: https://phab.mercurial-scm.org/D6704

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)