From f892d19c65d34aaf16acbb2cb1ed9c270830fbba Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sun, 19 Jun 2022 19:16:18 +0200 Subject: [PATCH] Add distribution home_url to welcome page --- mambabase/mambabase.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mambabase/mambabase.py b/mambabase/mambabase.py index 32fd620..cb4aeca 100755 --- a/mambabase/mambabase.py +++ b/mambabase/mambabase.py @@ -22,7 +22,9 @@ class MambabaseWizard(QtWidgets.QWizard): def __init__(self, parent=None): super(MambabaseWizard, self).__init__(parent) self.welcomePage = WelcomePage(self) - self.welcomePage.distroInfoLabel.setText(distro.name(pretty=True)) + self.welcomePage.distroInfoLabel.setText(distro.name(pretty=True) + + "

" + distro.os_release_info()['home_url'] + "") self.welcomePage.mainTextLabel.setText( self.welcomePage.mainTextLabel.text().format(distro.name())) self.addPage(self.welcomePage)