From 3fa826301bd61ca7e7832ce0ef655495b425558d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 11 Oct 2001 16:15:19 +0000 Subject: [PATCH] add a newline to the log message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11943 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/ColourSelect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") #--------------------------------------------------------------------------- -- 2.45.2