Sun, 08 Dec 2013 12:26:22 +0100
Prepared new stable release.
# -*- coding: utf-8 -*- # Copyright (c) 2004 - 2013 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)