From: Robin Dunn Date: Sat, 17 Aug 2002 19:12:21 +0000 (+0000) Subject: Tweaked python image output slightly X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/832e44d38a9c283ea1b03a76f80efb52519de21f Tweaked python image output slightly git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16577 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/tools/img2py.py b/wxPython/wxPython/tools/img2py.py index 21957dc8bc..1a5bd0ea0b 100644 --- a/wxPython/wxPython/tools/img2py.py +++ b/wxPython/wxPython/tools/img2py.py @@ -156,7 +156,7 @@ def main(args): % (imgName, data)) else: out.write("def get%sData():\n" - " return %s\n\n" + " return \\\n%s\n\n" % (imgName, data))