From 7acfbd070fa207dff309383da6e743ad2b9843c3 Mon Sep 17 00:00:00 2001 From: Sascha Silbe Date: Fri, 15 Oct 2010 19:14:59 +0000 Subject: 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 Acked-by: Simon Schampijer CC: Aleksey Lim --- (limited to 'tests/graphics/iconcache.py') diff --git a/tests/graphics/iconcache.py b/tests/graphics/iconcache.py index 90511d4..b3a8443 100644 --- a/tests/graphics/iconcache.py +++ b/tests/graphics/iconcache.py @@ -59,12 +59,12 @@ for d in data: test.pack_start(icon) icon.show() -button = gtk.Button("mec mac") +button = gtk.Button('mec mac') test.pack_start(button) button.connect('activate', _button_activated_cb) button.show() test.show() -if __name__ == "__main__": +if __name__ == '__main__': common.main(test) -- cgit v0.9.1