On Sun, 26 Mar 2017 23:02:01 -0700, Jun Wu wrote:
> # HG changeset patch
> # User Jun Wu <qu...@fb.com>
> # Date 1490584892 25200
> #      Sun Mar 26 20:21:32 2017 -0700
> # Node ID cd0c8320d216165bd8a62acc711e174ddef7a9f9
> # Parent  dcef7872ff35187d679a79dc6ad62cb9029923b1
> # Available At https://bitbucket.org/quark-zju/hg-draft
> #              hg pull https://bitbucket.org/quark-zju/hg-draft -r 
> cd0c8320d216
> rcutil: split osrcpath to return default.d paths (API)

> @@ -61,4 +58,5 @@ def rcpath():
>                      _rcpath.append(p)
>          else:
> -            _rcpath = osrcpath()
> +            paths = defaultrcpath() + systemrcpath() + userrcpath()
> +            _rcpath = map(os.path.normpath, paths)

I've replaced map with pycompat.maplist for py3 compatibility, but anyway
it's removed by a subsequent patch. ;)
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to