From 977a2daf39ed1f2e6037389c143b365c4488f3c6 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Thu, 27 Jul 2023 13:49:04 +0200 Subject: [PATCH] mambareport.py: update to new report script name, from openmamba-makereport to os-makereport --- mambareport/mambareport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mambareport/mambareport.py b/mambareport/mambareport.py index a5dec4f..d02cb2c 100755 --- a/mambareport/mambareport.py +++ b/mambareport/mambareport.py @@ -58,7 +58,7 @@ class GenerateReportThread(QtCore.QThread): reportFile = os.path.expanduser("~") + '/openmamba-report.txt' self.updateProgressSignal.emit({ 'value': 5, 'label': _("Generating report...")}) - result = subprocess.run(['pkexec', 'openmamba-makereport', + result = subprocess.run(['pkexec', 'os-makereport', '\'' + self.parent.welcomePage.reasonLineEdit.displayText() + '\'', reportFile ], stdout=subprocess.PIPE, stderr=subprocess.PIPE)