Show More
@@ -95,7 +95,10 b' class changectx(object):' | |||||
95 |
|
95 | |||
96 | # lookup failed |
|
96 | # lookup failed | |
97 | # check if it might have come from damaged dirstate |
|
97 | # check if it might have come from damaged dirstate | |
98 | if changeid in repo.dirstate.parents(): |
|
98 | # | |
|
99 | # XXX we could avoid the unfiltered if we had a recognizable exception | |||
|
100 | # for filtered changeset access | |||
|
101 | if changeid in repo.unfiltered().dirstate.parents(): | |||
99 | raise error.Abort(_("working directory has unknown parent '%s'!") |
|
102 | raise error.Abort(_("working directory has unknown parent '%s'!") | |
100 | % short(changeid)) |
|
103 | % short(changeid)) | |
101 | try: |
|
104 | try: |
General Comments 0
You need to be logged in to leave comments.
Login now