This commit is contained in:
Kovid Goyal 2019-04-11 18:08:28 +05:30
commit 982500475d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ class KINDLE(USBMS):
typ=user_notes[location]['type']))
for annotation in annotations:
annot = BeautifulSoup('<span>' + annotations + '</span>').find('span')
annot = BeautifulSoup('<span>' + annotation + '</span>').find('span')
divTag.insert(dtc, annot)
dtc += 1

View File

@ -1292,7 +1292,7 @@ class KOBO(USBMS):
annotation=user_notes[location]['annotation']))
for annotation in annotations:
annot = BeautifulSoup('<span>' + annotations + '</span>').find('span')
annot = BeautifulSoup('<span>' + annotation + '</span>').find('span')
divTag.insert(dtc, annot)
dtc += 1