style cleanup: prefer ' for strings

Tomeu prefers ' for strings, so let's use it wherever we don't have a good
reason to use ".

Reviewed-by: James Cameron <quozl@laptop.org>
Acked-by: Simon Schampijer <simon@laptop.org>
CC: Aleksey Lim <alsroot@member.fsf.org>
This commit is contained in:
Sascha Silbe
2010-10-15 19:14:59 +00:00
parent 5f13fcfc84
commit 7acfbd070f
38 changed files with 146 additions and 146 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ box.pack_start(text_view)
def echo(button, label):
if not button.props.active:
return
text_view.props.buffer.props.text += "\n" + label
text_view.props.buffer.props.text += '\n' + label
# RadioMenuButton