Mercurial > hg
view tests/svnurlof.py @ 51693:918ceb5a3d25
rust: apply clippy lints
They are at most harmless and at best make the codebase more readable and
simpler.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Thu, 18 Jul 2024 13:35:39 +0200 |
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)