Sat, 01 Oct 2011 17:20:29 +0200
Fixed an issue in the install and uninstall scripts.
(transplanted from 8c9af7608afaa98608e72a74d0485197dd0503c4)
# -*- coding: utf-8 -*- """ Module implementing $CLASSNAME$. """ from PyQt4.QtCore import pyqtSlot from PyQt4.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)