From f31ae43b3465a5b522401e65688f9643a4f1038a Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Mon, 18 May 2026 09:25:16 -0700 Subject: [PATCH] use != --- kindlecomicconverter/KCC_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kindlecomicconverter/KCC_gui.py b/kindlecomicconverter/KCC_gui.py index 82d3bf3..b5ef4b6 100644 --- a/kindlecomicconverter/KCC_gui.py +++ b/kindlecomicconverter/KCC_gui.py @@ -1825,7 +1825,7 @@ class KCCGUI_MetaEditor(KCC_ui_editor.Ui_editorDialog): if not volumes: return None, 'No valid volume numbers parsed' if len(volumes) != fileCount: - return None, f'Volume count ({len(volumes)}) ≠ file count ({fileCount})' + return None, f'Volume count ({len(volumes)}) != file count ({fileCount})' return volumes, None