add a newline to the log message

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11943 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2001-10-11 16:15:19 +00:00
parent 1a40c31edf
commit 3fa826301b

View File

@ -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")
#---------------------------------------------------------------------------