summaryrefslogtreecommitdiffstats
path: root/examples3/addressbook.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples3/addressbook.py')
-rwxr-xr-xexamples3/addressbook.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples3/addressbook.py b/examples3/addressbook.py
index 96746c0..14b5679 100755
--- a/examples3/addressbook.py
+++ b/examples3/addressbook.py
@@ -78,7 +78,7 @@ fileprint = [
class ABCentralWidget( TQWidget ):
def __init__( self, *args ):
- apply( TQWidget.__init__, (self, ) + args )
+ TQWidget.__init__(*(self, ) + args)
self.mainGrid = TQGridLayout( self, 2, 1, 5, 5 )
self.setupTabWidget()