mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-26 19:41:11 +00:00
Fixes typo that confuses isbn 10 and 13
This commit is contained in:
parent
f839038c8f
commit
116a838eef
1 changed files with 1 additions and 1 deletions
|
@ -368,7 +368,7 @@ class Edition(Book):
|
|||
if self.isbn_10:
|
||||
self.isbn_10 = normalize_isbn(self.isbn_10)
|
||||
if self.isbn_13:
|
||||
self.isbn_10 = normalize_isbn(self.isbn_13)
|
||||
self.isbn_13 = normalize_isbn(self.isbn_13)
|
||||
|
||||
# set rank
|
||||
self.edition_rank = self.get_rank()
|
||||
|
|
Loading…
Reference in a new issue