1
0
forked from VimPlug/jedi

Ignore jedi.NotFoundError

This commit is contained in:
Takafumi Arakaki
2013-05-22 23:14:32 +02:00
parent 6d026ec1af
commit 2dee71ff4b

View File

@@ -125,6 +125,8 @@ class RandomAtaccker(MixinPrinter, BaseAttacker):
for (operation, args) in self.generate_attacks(maxtries, finder):
try:
self.attack(operation, *args)
except jedi.NotFoundError:
pass
except Exception:
self.add_record(sys.exc_info(), operation, args)
self.print_record()