pricecharts

track prices of consumer electronics
Log | Files | Refs | README

commit 0d18d24b3f87db1c5b7e6c652337e50907e4f9ad
parent 601efc08e818ec146cfc82374f33653b402c09ec
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Fri, 24 Oct 2014 01:40:59 -0600

product_scraper: revert scalar removal in printf

Diffstat:
Mproduct_scraper.pl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/product_scraper.pl b/product_scraper.pl @@ -130,7 +130,7 @@ for (keys %product_map) { } $email .= sprintf("%7s %5s %3s %4s\n", - $new + $old, @results, $new, time - $start); + $new + $old, scalar @results, $new, time - $start); } $email .= "\nNew products:\n" if (@new);