From 78406cd78e91753478d489d330e5b29a9c48c2d1 Mon Sep 17 00:00:00 2001 From: Carifio24 Date: Fri, 7 Oct 2022 11:26:10 -0400 Subject: [PATCH] Fix typo in dialog message. --- glue/core/qt/dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glue/core/qt/dialogs.py b/glue/core/qt/dialogs.py index 692ca095b..990d24bbd 100644 --- a/glue/core/qt/dialogs.py +++ b/glue/core/qt/dialogs.py @@ -23,7 +23,7 @@ def dialog(title, text, icon, setting=None, default=None): return True check = QCheckBox() - check.setText('Dont show this message again (can be reset via the preferences)') + check.setText('Don\'t show this message again (can be reset via the preferences)') info = QMessageBox() info.setIcon(icon)