From 122bdf7eb1b8e43bff0914adbf1ccde1ed0faae6 Mon Sep 17 00:00:00 2001 From: Mizaki Date: Thu, 8 Jun 2023 01:18:46 +0100 Subject: [PATCH 1/2] Change auto-identfy message to point users to the auto-tag assume 1 option --- comictaggerlib/taggerwindow.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/comictaggerlib/taggerwindow.py b/comictaggerlib/taggerwindow.py index 2488681..d192cda 100644 --- a/comictaggerlib/taggerwindow.py +++ b/comictaggerlib/taggerwindow.py @@ -1017,7 +1017,10 @@ class TaggerWindow(QtWidgets.QMainWindow): # Only need this check is the source has issue level data. if autoselect and issue_number == "": QtWidgets.QMessageBox.information( - self, "Automatic Identify Search", "Can't auto-identify without an issue number (yet!)" + self, + "Automatic Identify Search", + "Can't auto-identify without an issue number. The auto-tag function has the 'If no issue number, " + 'assume "1"\' option if desired.', ) return From e8f13b1f9ece84ebe11efc912ededab1d4215778 Mon Sep 17 00:00:00 2001 From: Mizaki Date: Fri, 9 Jun 2023 02:08:38 +0100 Subject: [PATCH 2/2] fix quoting --- comictaggerlib/taggerwindow.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/comictaggerlib/taggerwindow.py b/comictaggerlib/taggerwindow.py index d192cda..b06d02e 100644 --- a/comictaggerlib/taggerwindow.py +++ b/comictaggerlib/taggerwindow.py @@ -1019,8 +1019,7 @@ class TaggerWindow(QtWidgets.QMainWindow): QtWidgets.QMessageBox.information( self, "Automatic Identify Search", - "Can't auto-identify without an issue number. The auto-tag function has the 'If no issue number, " - 'assume "1"\' option if desired.', + "Can't auto-identify without an issue number. The auto-tag function has the 'If no issue number, assume \"1\"' option if desired.", ) return