Skip to content

Commit e6edae3

Browse files
alchzhedwardslabs
authored andcommitted
fix merge conflict
1 parent 00317e4 commit e6edae3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/amazon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def amazon(text, _parsed=False):
7878
try:
7979
price = item.find('span', {'class': ['s-price', 'a-color-price']}).text
8080
except AttributeError:
81-
for i in item.find_all('sup', {'class': 'sx-price-fractional'}):
81+
for i in item.find_all('sup', class_='sx-price-fractional'):
8282
i.string.replace_with('.' + i.string)
8383
price = item.find('span', {'class': 'sx-price'}).text
8484

0 commit comments

Comments
 (0)