pricecharts

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

commit 8eaeff980d157976420c6eeb8abfec87cd60b31b
parent d0007f09ffdb74a0584d0f3a38c3a983aea1b189
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Sun,  1 Feb 2015 19:29:47 -0700

PriceChart: fix thinko

Diffstat:
MPriceChart.pm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/PriceChart.pm b/PriceChart.pm @@ -86,7 +86,7 @@ sub get_ua { my $cfg = shift; - my $ua = LWP::UserAgent->new(agent => $cfg->{user_agent}); + my $ua = LWP::UserAgent->new(agent => $cfg->{"general"}{"user_agent"}); $ua->default_header("Accept" => "*/*"); return $ua;