]> git.donarmstrong.com Git - wannabuild.git/commitdiff
wanna-build: bugfix for list_min_age
authorPhilipp Kern <pkern@debian.org>
Mon, 18 Jan 2010 22:22:14 +0000 (22:22 +0000)
committerPhilipp Kern <pkern@debian.org>
Mon, 18 Jan 2010 22:22:14 +0000 (22:22 +0000)
Signed-off-by: Philipp Kern <pkern@debian.org>
bin/wanna-build

index 2e4a014cf59259735f76ff1e79ba4df9710f5db0..36fca2c0d12e547afd5d2fe3492a47bfb42b0962 100755 (executable)
@@ -2502,7 +2502,7 @@ sub get_all_source_info {
        }
 
        if ($options{list_min_age} < 0) {
-               $q .= ' AND age(state_change::timestamp) < ? days ';
+               $q .= ' AND age(state_change::timestamp) < ? ';
                push @args, -$options{list_min_age} . " days";
        }