summaryrefslogtreecommitdiffstats
path: root/examples2/buttongroups.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples2/buttongroups.py')
-rwxr-xr-xexamples2/buttongroups.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples2/buttongroups.py b/examples2/buttongroups.py
index 88836c6..d3e0aaf 100755
--- a/examples2/buttongroups.py
+++ b/examples2/buttongroups.py
@@ -21,7 +21,7 @@ FALSE = 0
class ButtonsGroups( TQWidget ):
def __init__( self, *args ):
- apply( TQWidget.__init__, (self,) + args )
+ TQWidget.__init__(*(self,) + args)
# Create Widgets which allow easy layouting
self.vbox = TQVBoxLayout( self )