changeset 6275 | fda369b5779c |
parent 6274 | f3f383efbeae |
child 6277 | cfebb175704f |
--- a/mercurial/copies.py Sat Mar 15 10:02:31 2008 -0500 +++ b/mercurial/copies.py Sat Mar 15 10:02:31 2008 -0500 @@ -57,7 +57,7 @@ Find moves and copies between context c1 and c2 """ # avoid silly behavior for update from empty dir - if not c1 or not c2 or not ca: + if not c1 or not c2: return {}, {} rev1, rev2 = c1.rev(), c2.rev()