Fix #2091151 [MDE: UnboundLocalError in Invalid ISBN dialog](https://bugs.launchpad.net/calibre/+bug/2091151)

This commit is contained in:
Kovid Goyal 2024-12-06 15:55:12 +05:30
parent a8ac58dd0e
commit 8c02414d84
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1854,7 +1854,7 @@ class ISBNDialog(QDialog): # {{{
isbn = str(txt) isbn = str(txt)
ok = None ok = None
if not isbn: if not isbn:
pass extra = ''
elif check_isbn(isbn) is not None: elif check_isbn(isbn) is not None:
extra = _('This ISBN is valid') extra = _('This ISBN is valid')
ok = True ok = True