##// END OF EJS Templates
mq: repo['.'] is not a wctx, repo[None] is...
Mads Kiilerich -
r20959:b6e0616d default
parent child Browse files
Show More
@@ -826,10 +826,10 b' class queue(object):'
826 repo.setparents(p1, merge)
826 repo.setparents(p1, merge)
827
827
828 if all_files and '.hgsubstate' in all_files:
828 if all_files and '.hgsubstate' in all_files:
829 wctx = repo['.']
829 wctx = repo[None]
830 mctx = actx = repo[None]
830 pctx = repo['.']
831 overwrite = False
831 overwrite = False
832 mergedsubstate = subrepo.submerge(repo, wctx, mctx, actx,
832 mergedsubstate = subrepo.submerge(repo, pctx, wctx, wctx,
833 overwrite)
833 overwrite)
834 files += mergedsubstate.keys()
834 files += mergedsubstate.keys()
835
835
General Comments 0
You need to be logged in to leave comments. Login now