Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/graphics/alert.py
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2010-10-15 19:14:59 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2010-10-22 17:26:26 (GMT)
commit717f1f717189e77563fd50470ddcde5ef8ebaf20 (patch)
tree404e8eb5ff829d14dc517f440f4aadade8503a75 /src/sugar/graphics/alert.py
parentcf135ed10eed49206da5a9dc91b2ac01c0e219e7 (diff)
style cleanup: prefer ' for strings
Tomeu prefers ' for strings, so let's use it wherever we don't have a good reason to use ".
Diffstat (limited to 'src/sugar/graphics/alert.py')
-rw-r--r--src/sugar/graphics/alert.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sugar/graphics/alert.py b/src/sugar/graphics/alert.py
index f032871..5298430 100644
--- a/src/sugar/graphics/alert.py
+++ b/src/sugar/graphics/alert.py
@@ -145,7 +145,7 @@ class Alert(gtk.EventBox):
if pspec.name == 'title':
if self._title != value:
self._title = value
- self._title_label.set_markup("<b>" + self._title + "</b>")
+ self._title_label.set_markup('<b>' + self._title + '</b>')
elif pspec.name == 'msg':
if self._msg != value:
self._msg = value