fixed start time form

This commit is contained in:
Andreas Preikschat 2013-03-27 10:14:24 +01:00
parent 7476ff27ff
commit 8bf76a7baa
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@ class StartTimeForm(QtGui.QDialog, Ui_StartTimeDialog):
"""
Constructor
"""
QtGui.QDialog.__init__(self, self.main_window)
super().__init__()
# TODO: python3 - parent correct?
#QtGui.QDialog.__init__(self, self.main_window)
self.setupUi(self)
def exec_(self):