summaryrefslogtreecommitdiff
path: root/data/eo
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2015-04-14 19:55:03 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2015-04-14 19:55:52 -0400
commit03ed82704db55ab328335686788289feb37a3825 (patch)
tree060b53e070143e3c61de52dc0d34632a628bcf84 /data/eo
parentb3cbb14af73fd0368f0e2cdc1acfcad9a25bf83e (diff)
downloadefl-03ed82704db55ab328335686788289feb37a3825.tar.gz
eo_gdb.py: fix syntax error
I guess this has never ever worked. I hate everyone for making me look at python. @fix
Diffstat (limited to 'data/eo')
-rw-r--r--data/eo/eo_gdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/eo/eo_gdb.py b/data/eo/eo_gdb.py
index 2df82b6136..aafe881eff 100644
--- a/data/eo/eo_gdb.py
+++ b/data/eo/eo_gdb.py
@@ -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.