From 1027901c38c2d2c7100486c8e9f77c035f7a9463 Mon Sep 17 00:00:00 2001 From: George Hotz Date: Mon, 2 May 2016 02:57:06 +0900 Subject: [PATCH] remove prints --- ida/python/qira.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ida/python/qira.py b/ida/python/qira.py index 4a992bc5..867a54a2 100644 --- a/ida/python/qira.py +++ b/ida/python/qira.py @@ -92,7 +92,7 @@ class idbhook(idaapi.IDB_Hooks): class idphook(idaapi.IDP_Hooks): def renamed(self, ea, new_name, local_name): - print ea, new_name + #print ea, new_name ws_send("setname 0x%x %s" % (ea, new_name)) return 0 @@ -101,7 +101,7 @@ class uihook(idaapi.UI_Hooks): idaapi.UI_Hooks.__init__(self) self.binds = [] def preprocess(self, arg): - print "preprocess", arg + #print "preprocess", arg return 0 def current_tform_changed(self, a1, a2): #print "tform", idaapi.get_tform_title(a1)