Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/propwidgets.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-12-09 02:58:20 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-12-09 03:07:06 (GMT)
commit394001c2e7c8585b7152e8f5888e340a0c7a1bbc (patch)
tree6254b8f0a17768c9e47aeafa5ff2c1992ff6d33c /tutorius/propwidgets.py
parentcf6785d168eaf3ed5505705478a6aea05ad3da98 (diff)
Integration with Sugar : Exposing set_current_act on Service
Correcting two interface mismatches (install error on translator, subscribe error on creator) Changing MessageButtonNext to ButtonNext
Diffstat (limited to 'tutorius/propwidgets.py')
-rw-r--r--tutorius/propwidgets.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tutorius/propwidgets.py b/tutorius/propwidgets.py
index dfc6ac0..09d53c5 100644
--- a/tutorius/propwidgets.py
+++ b/tutorius/propwidgets.py
@@ -21,6 +21,9 @@ Allows displaying properties cleanly.
import gtk
import gobject
+import logging
+LOGGER = logging.getLogger("sugar.tutorius.propwidgets")
+
from . import gtkutils, overlayer
###########################################################################
# Dialog classes
@@ -94,6 +97,7 @@ class SignalInputDialog(gtk.MessageDialog):
iter = self.entry.get_active_iter()
if iter:
text = self.model.get_value(iter, 0)
+ LOGGER.debug("SignalInputDialog :: Got signal name %s", text)
return text
return None