diff options
author | Struan Donald <struan@exo.org.uk> | 2012-04-27 15:23:04 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-04-27 15:23:04 +0100 |
commit | 7cfdeebf2e65361e0141a7955b70588700bd5cbe (patch) | |
tree | 77035195fbc8283a56892c0d2f174b41ecf5e600 | |
parent | 3b398fe1783b13162228a73688c67dcfbf2bb9ac (diff) |
correct parameter names
-rwxr-xr-x | bin/comment-backfill | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/comment-backfill b/bin/comment-backfill index dfdaf2750..e296d7756 100755 --- a/bin/comment-backfill +++ b/bin/comment-backfill @@ -14,8 +14,8 @@ my $start_time = DateTime->now->subtract( days => 1, hours => 1 ); my $end_time = DateTime->now; my $updates = Open311::GetServiceRequestUpdates->new( - start_time => $start_time, - end_time => $end_time, + start_date => $start_time, + end_date => $end_time, ); $updates->fetch; |