##// END OF EJS Templates
debugcommands: introduce new debugrequirements command...
debugcommands: introduce new debugrequirements command This for now just prints out the list of current requirements. In future this will be helpful in reading requirements from couple of sources, and checking which requirement comes from where. Differential Revision: https://phab.mercurial-scm.org/D8632

File last commit:

r43346:2372284d default
r45667:4a28f5e8 default
Show More
svnurlof.py
20 lines | 367 B | text/x-python | PythonLexer
Augie Fackler
tests: make and use a new `svnurlof.py` helper for constructing svn urls...
r41621 from __future__ import absolute_import, print_function
import sys
from mercurial import (
pycompat,
util,
)
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
tests: make and use a new `svnurlof.py` helper for constructing svn urls...
r41621 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))
Augie Fackler
formatting: blacken the codebase...
r43346
Augie Fackler
tests: make and use a new `svnurlof.py` helper for constructing svn urls...
r41621 if __name__ == '__main__':
main(sys.argv)