pricecharts

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

commit 538747ee648343caccb06aa29d32d01dfc1baac6
parent ae316e6e1a2e08b02a004dd1a23e89284dc79b06
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Wed,  5 Nov 2014 22:29:39 -0700

gen_svg: don't close the path

Diffstat:
Mgen_svg.pl | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gen_svg.pl b/gen_svg.pl @@ -78,8 +78,7 @@ while (my ($part_num, $description) = $parts_sth->fetchrow_array()) { } vprintf(@xs . " data points\n"); - my $points = $svg->get_path(x => \@xs, y => \@ys, - -closed => "false"); + my $points = $svg->get_path(x => \@xs, y => \@ys); $svg->path( %$points, id => $vendor,