From 5ab72c1279f73c530051b72df13352f33cf2ba0c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Tue, 28 May 2019 13:08:46 +0200 Subject: [PATCH] Fix log message --- manuels/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuels/views.py b/manuels/views.py index 46a2c50..d17a665 100644 --- a/manuels/views.py +++ b/manuels/views.py @@ -306,7 +306,7 @@ def isbn_api(request, isbn): authors = authors.getText().strip() price = decitre_soup.select('.product-add-to-cart-wrapper div.price span.final-price') - logger.info(f'Fonud price {price}') + logger.info(f'Found price html {price}') if price: price = price[0] price = price.getText().replace('€', '').replace(',', '.').strip()