diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2011-05-02 22:27:11 +0200 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2011-05-09 17:43:25 +0200 |
commit | 40d90de0b3f5508d57e035a885f3a31a6a90871d (patch) | |
tree | 9c4394483c4debe5f2fd0bc266801913761549db | |
parent | d098c0fe0ee47fef044f9800e94140e314694a47 (diff) |
Typo.
-rwxr-xr-x | bin/showcouncilrates | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/showcouncilrates b/bin/showcouncilrates index 9eece34b2..fff3d11d8 100755 --- a/bin/showcouncilrates +++ b/bin/showcouncilrates @@ -49,8 +49,8 @@ foreach my $row (@$stats){ if ($row->{council}) { my @council_names = map { $areas_info->{$_}->{name} } @{$row->{council}} ; for my $council (@council_names) { - $adminsum{$council} = $row->{total}; - $adminfixed{$council} = $row->{fixed}; + $adminsum{$council} += $row->{total}; + $adminfixed{$council} += $row->{fixed}; } } } |