# HG changeset patch # User Pierre-Yves David # Date 1391208773 28800 # Node ID 205599e318706070c75f6fb82460f97dd359520b # Parent fa6cb300ded47fa26405681b6efbf2d5cc53e111 record: use absolute path instead of os.chdir Record was changing the current directory to `repo.root` in order to be able to feed `command.commit` file name relative to this `repo.root`. This is a bit overkill and prevent an incoming fix to rebase. This would also break multi-threaded usage. Instead we just feed `command.commit` with absolute path name. works as well as before but without chdir. diff -r fa6cb300ded4 -r 205599e31870 hgext/record.py --- a/hgext/record.py Wed Jan 29 15:16:36 2014 +0100 +++ b/hgext/record.py Fri Jan 31 14:52:53 2014 -0800 @@ -601,12 +601,8 @@ # it is important to first chdir to repo root -- we'll call # a highlevel command with list of pathnames relative to # repo root - cwd = os.getcwd() - os.chdir(repo.root) - try: - commitfunc(ui, repo, *newfiles, **opts) - finally: - os.chdir(cwd) + newfiles = [repo.wjoin(nf) for nf in newfiles] + commitfunc(ui, repo, *newfiles, **opts) return 0 finally: