Sun, 18 Apr 2010 10:52:29 +0000
Prepared new snapshot release.
# -*- coding: utf-8 -*- # Copyright (c) 2004 - 2010 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): QDialog.__init__(self, parent) self.setupUi(self) self.infoBrowser.setHtml(info)