The unified diff between revisions [20675585..] and [0eddb00b..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'dprobe.py'
#
#
# patch "dprobe.py"
# from [9d2a100820cd8ed51ff6dade30999c6ff8f8b1f5]
# to [d72a25d668ab85a1aaed3094a09462cdc0da23ea]
#
============================================================
--- dprobe.py 9d2a100820cd8ed51ff6dade30999c6ff8f8b1f5
+++ dprobe.py d72a25d668ab85a1aaed3094a09462cdc0da23ea
@@ -85,8 +85,6 @@ class DProbe:
# go...
self.window.show_all()
def object_path_changed(self, widget):
- print widget
- print widget.get_property("sensitive")
if not widget.get_property("sensitive") or len(widget.get_text()) == 0:
self.introspect_button.set_sensitive(False)
else:
@@ -104,7 +102,7 @@ class DProbe:
self.object_path_changed(self.object_path)
def introspect_clicked(self, widget, data=None):
path = self.object_path.get_text()
- print path
+ print "should now introspect:", path
# ok, if we've already introspected this path then switch to that
# page in the notebook. Otherwise, create a new notebook page
# and introspect this sucker..