Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/intro
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-02-26 03:27:33 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-02-26 03:27:33 (GMT)
commit88728f996e48266adda8ae3b144d67591fab3a73 (patch)
tree42cb32a34622c3e994e2c5f82e8ce0da4602cd5d /shell/intro
parentc1efa0a2669c71b3eb74927378e56e2d83ee398d (diff)
Remove debugging stuff
Diffstat (limited to 'shell/intro')
-rw-r--r--shell/intro/colorpicker.py1
-rw-r--r--shell/intro/intro.py3
2 files changed, 0 insertions, 4 deletions
diff --git a/shell/intro/colorpicker.py b/shell/intro/colorpicker.py
index 104c9df..8464124 100644
--- a/shell/intro/colorpicker.py
+++ b/shell/intro/colorpicker.py
@@ -113,7 +113,6 @@ class ColorPicker(hippo.CanvasBox, hippo.CanvasItem):
self._slider_values = 9
self._xo = CanvasIcon(scale=units.XLARGE_ICON_SCALE,
-# icon_name='stock-buddy.svg',
icon_name='theme:stock-buddy',
stroke_color=color.HTMLColor(self._fg_hex),
fill_color=color.HTMLColor(self._bg_hex))
diff --git a/shell/intro/intro.py b/shell/intro/intro.py
index 34a8324..f6e9fdf 100644
--- a/shell/intro/intro.py
+++ b/shell/intro/intro.py
@@ -97,7 +97,6 @@ class VideoBox(hippo.CanvasBox, hippo.CanvasItem):
self.append(self._video_widget)
def _new_pixbuf_cb(self, widget, pixbuf):
- print "got new pixbuf"
if self._pixbuf:
del self._pixbuf
self._pixbuf = pixbuf
@@ -172,7 +171,6 @@ class IntroBox(hippo.CanvasBox, hippo.CanvasItem):
self.append(self._color_box)
self._ok = iconbutton.IconButton(icon_name="theme:stock-forward",
-# self._ok = iconbutton.IconButton(icon_name="stock-forward.svg",
padding_bottom=units.grid_to_pixels(0.5))
self._ok.connect('activated', self._ok_activated)
self.append(self._ok)
@@ -183,7 +181,6 @@ class IntroBox(hippo.CanvasBox, hippo.CanvasItem):
color = self._color_box.get_color()
if not pixbuf or not name or not color:
- print "pixbuf: %r, name %r, color %r" % (pixbuf, name, color)
return
self._create_profile(pixbuf, name, color)