Skip to content

Commit

Permalink
Fix money value (',' -> '.').
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-josef-spacek committed Aug 3, 2014
1 parent 0e3dc7c commit 04cbc9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scraper.pl
Expand Up @@ -44,6 +44,7 @@
my ($year, $celkem, $vodne, $stocne) = map {
my $value = $td[$_]->as_text;
remove_trailing(\$value);
$value =~ s/,/\./ms;
$value;
} (0 .. 3);

Expand Down

0 comments on commit 04cbc9f

Please sign in to comment.