Show More
@@ -435,7 +435,10 b' class notifier(object):' | |||||
435 | if spec is None: |
|
435 | if spec is None: | |
436 | subs.add(sub) |
|
436 | subs.add(sub) | |
437 | continue |
|
437 | continue | |
438 | revs = self.repo.revs(b'%r and %d:', spec, ctx.rev()) |
|
438 | try: | |
|
439 | revs = self.repo.revs(b'%r and %d:', spec, ctx.rev()) | |||
|
440 | except error.RepoLookupError: | |||
|
441 | continue | |||
439 | if len(revs): |
|
442 | if len(revs): | |
440 | subs.add(sub) |
|
443 | subs.add(sub) | |
441 | continue |
|
444 | continue |
General Comments 0
You need to be logged in to leave comments.
Login now