diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-09-22 19:06:57 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-09-22 19:06:57 -0400 |
commit | 5f46020e7090e28495d2b7e66e58f2c74698917a (patch) | |
tree | a2f5cfba9aa25024e176e8f05274e80a09aef4e4 /libdimension-python/tests/canvas.py | |
parent | a09085f36ac82886ba768ab141361c2e94c6ff5e (diff) | |
download | dimension-5f46020e7090e28495d2b7e66e58f2c74698917a.tar.xz |
Use double rather than single quotes for Python strings.
Diffstat (limited to 'libdimension-python/tests/canvas.py')
-rwxr-xr-x | libdimension-python/tests/canvas.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdimension-python/tests/canvas.py b/libdimension-python/tests/canvas.py index 239a548..0f07d66 100755 --- a/libdimension-python/tests/canvas.py +++ b/libdimension-python/tests/canvas.py @@ -51,7 +51,7 @@ except OSError as e: canvas.clear(Blue) if have_PNG: - canvas.write_PNG('png.png') + canvas.write_PNG("png.png") #if haveGL: # canvas.drawGL() |