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
@@ -80,5 +80,5 @@ class TestMime(unittest.TestCase):
self.assertEqual(mime_type, 'text/plain')
if __name__ == "__main__":
if __name__ == '__main__':
unittest.main()