From 2981869eca78a74608d17a92cf6cb85a8412624e Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 22 Mar 2013 01:29:48 +0000 Subject: [PATCH] Fix typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73703 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- etgtools/tweaker_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etgtools/tweaker_tools.py b/etgtools/tweaker_tools.py index cf8d1dc5..d5ee635d 100644 --- a/etgtools/tweaker_tools.py +++ b/etgtools/tweaker_tools.py @@ -217,7 +217,7 @@ def fixWindowClass(klass, hideVirtuals=True, ignoreProtected=True): # There is no need to make all the C++ virtuals overridable in Python, and # hiding the fact that they are virtual from the back end generator will # greatly reduce the amount of code that needs to be generated. Remove all - # the virtual flags, and then and then add it back to a select few. + # the virtual flags, and then add it back to a select few. removeVirtuals(klass) addWindowVirtuals(klass)