Sat, 12 Apr 2014 16:19:56 +0200
Fixed an issue in the project writer.
(grafted from 60f6631547897143c9b3188b097c6354e9af4507)
# -*- coding: utf-8 -*- """ Module implementing $CLASSNAME$. """ from PySide.QtCore import Slot from PySide.QtGui import $SUPERCLASS$ from .Ui_$FORMFILE$ import Ui_$FORMCLASS$ class $CLASSNAME$($SUPERCLASS$, Ui_$FORMCLASS$): """ Class documentation goes here. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent widget (QWidget) """ $SUPERCLASS$.__init__(self, parent) self.setupUi(self)