summaryrefslogtreecommitdiffstats
path: root/mga-advisor.py
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2024-02-08 22:06:54 +0100
committerPapoteur <papoteur@mageia.org>2024-02-08 22:06:54 +0100
commit05e57051fb6bf346da7e0700a1262579b346d827 (patch)
tree170f49b6d244fc6b7be685c7553f26bf6ad77724 /mga-advisor.py
parent86f71da21c6ad7e67b4d18d0d2349a3f33dff6d8 (diff)
downloadmga-advisor-05e57051fb6bf346da7e0700a1262579b346d827.tar
mga-advisor-05e57051fb6bf346da7e0700a1262579b346d827.tar.gz
mga-advisor-05e57051fb6bf346da7e0700a1262579b346d827.tar.bz2
mga-advisor-05e57051fb6bf346da7e0700a1262579b346d827.tar.xz
mga-advisor-05e57051fb6bf346da7e0700a1262579b346d827.zip
Typo
Diffstat (limited to 'mga-advisor.py')
-rw-r--r--mga-advisor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mga-advisor.py b/mga-advisor.py
index 4bf4d26..ef34888 100644
--- a/mga-advisor.py
+++ b/mga-advisor.py
@@ -262,7 +262,7 @@ class Widget(QWidget):
if self.ui.bug_le.text() != "":
filename = os.path.join(QDir().homePath()+ default_path, f"{self.ui.bug_le.text()}.adv")
if os.path.exists(filename):
- response = QMessageBox.question(self, 'File exists', f'The file {filename} already exists. Do you want to override it ?', QMessageBox.Yes | QMessageBox.No)
+ response = QMessageBox.question(self, 'File exists', f'The file {filename} already exists. Do you want to overwrite it ?', QMessageBox.Yes | QMessageBox.No)
if response == QMessageBox.No:
return
with open(filename, 'w') as f: