Mercurial > hg
changeset 13005:cffa35529706
mq: fix comment to reflect change in efbee27415ab
author | Martin Geisler <mg@aragost.com> |
---|---|
date | Wed, 17 Nov 2010 09:06:38 +0100 |
parents | efbee27415ab |
children | ac627ab0b3a5 |
files | hgext/mq.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/mq.py Tue Nov 16 13:06:04 2010 -0600 +++ b/hgext/mq.py Wed Nov 17 09:06:38 2010 +0100 @@ -1270,7 +1270,7 @@ # and then commit. # # this should really read: - # mm, dd, aa = repo.status(top, patchparent)[:4] + # mm, dd, aa = repo.status(top, patchparent)[:3] # but we do it backwards to take advantage of manifest/chlog # caching against the next repo.status call mm, aa, dd = repo.status(patchparent, top)[:3]