Mercurial > public > mercurial-scm > hg
comparison mercurial/revlog.py @ 2295:9c15f85e61b1
fix a typo in an error message
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Tue, 16 May 2006 11:07:56 +0200 |
parents | 854954fd410a |
children | 16276b1c0658 |
comparison
equal
deleted
inserted
replaced
2294:ce67fa312f61 | 2295:9c15f85e61b1 |
---|---|
1135 continue | 1135 continue |
1136 delta = chunk[80:] | 1136 delta = chunk[80:] |
1137 | 1137 |
1138 for p in (p1, p2): | 1138 for p in (p1, p2): |
1139 if not p in self.nodemap: | 1139 if not p in self.nodemap: |
1140 raise RevlogError(_("unknown parent %s") % short(p1)) | 1140 raise RevlogError(_("unknown parent %s") % short(p)) |
1141 | 1141 |
1142 if not chain: | 1142 if not chain: |
1143 # retrieve the parent revision of the delta chain | 1143 # retrieve the parent revision of the delta chain |
1144 chain = p1 | 1144 chain = p1 |
1145 if not chain in self.nodemap: | 1145 if not chain in self.nodemap: |