Skip to content
Snippets Groups Projects
Commit 2ba98efd authored by Jose Fonseca's avatar Jose Fonseca
Browse files

python/retrace: Process the call no passed to --to option inclusively.

parent cf7e8fbc
No related branches found
No related tags found
No related merge requests found
......@@ -677,7 +677,7 @@ class Interpreter(parser.TraceDumper):
self.interpret_call(call)
def handle_call(self, call):
if self.options.stop and call.no >= self.options.stop:
if self.options.stop and call.no > self.options.stop:
sys.exit(0)
if (call.klass, call.method) in self.ignore_calls:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment