X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e4a197e4c60e461b8068b0619692ea083e30b8b..6a8b9da42c22b34c1f8ea5f10080e7c51e21a330:/wxPython/demo/GenericButtons.py diff --git a/wxPython/demo/GenericButtons.py b/wxPython/demo/GenericButtons.py index c3e7ff4039..3165c0f977 100644 --- a/wxPython/demo/GenericButtons.py +++ b/wxPython/demo/GenericButtons.py @@ -20,7 +20,7 @@ class TestPanel(wxPanel): b = wxButton(self, -1, "non-default") EVT_BUTTON(self, b.GetId(), self.OnButton) sizer.Add(b) - sizer.Add(10,10) + sizer.Add((10,10)) b = wxGenButton(self, -1, 'Hello') EVT_BUTTON(self, b.GetId(), self.OnButton)