From: Robin Dunn Date: Thu, 11 Oct 2001 16:15:19 +0000 (+0000) Subject: add a newline to the log message X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3fa826301bd61ca7e7832ce0ef655495b425558d?ds=inline add a newline to the log message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11943 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/ColourSelect.py b/wxPython/demo/ColourSelect.py index cd9a4cfda0..d8d5df8984 100644 --- a/wxPython/demo/ColourSelect.py +++ b/wxPython/demo/ColourSelect.py @@ -61,7 +61,7 @@ class TestColourSelect(wxPanel): name = self.names[i] result.append(name + ": " + str(colour)) # create string list for easy viewing of results out_result = string.joinfields(result, ', ') - self.log.WriteText("Colour Results :" + out_result) + self.log.WriteText("Colour Results :" + out_result + "\n") #---------------------------------------------------------------------------