Sun, 19 Jun 2011 19:36:27 +0200
Changed the code to use super() to access the superclass.
# -*- coding: utf-8 -*- # Copyright (c) 2004 - 2011 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implemting a dialog to show repository information. """ from PyQt4.QtGui import QDialog from .Ui_RepositoryInfoDialog import Ui_VcsRepositoryInfoDialog class VcsRepositoryInfoDialog(QDialog, Ui_VcsRepositoryInfoDialog): """ Class implemting a dialog to show repository information. """ def __init__(self, parent, info): super().__init__(parent) self.setupUi(self) self.infoBrowser.setHtml(info)