eo_gdb.py: fix syntax error

I guess this has never ever worked. I hate everyone for making me look at python.

@fix
This commit is contained in:
Mike Blumenkrantz 2015-04-14 19:55:03 -04:00
parent b3cbb14af7
commit 03ed82704d
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class Eo_step(gdb.Command):
if symbol_equal_to_string(gdb.selected_frame().function(), self.START_FUNC):
gdb.execute("finish", False, to_string=True)
else:
print "Search limit reached, you tried calling eo_step too far from an eo_do."
print("Search limit reached, you tried calling eo_step too far from an eo_do.")
return
# Step until we move to a different function. FIXME: The hook can confuse us, needs to be solved.