add a missing comma

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@23923 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-09-25 22:23:58 +00:00
parent 71837a8e1b
commit 03181d8c1e

View File

@@ -3516,7 +3516,7 @@ class wxMaskedEditMixin:
start, end = fraction._extent
wxCallAfter(self._SetInsertionPoint, start)
if fraction._selectOnFieldEntry:
dbg('queuing selection after decimal point to:' (start, end))
dbg('queuing selection after decimal point to:', (start, end))
wxCallAfter(self._SetSelection, start, end)
keep_processing = False