From 8ec8da0491ad89604700b3e29a227966f6d84ba1 Mon Sep 17 00:00:00 2001 From: Perl Tidy Date: Wed, 5 Dec 2018 15:38:52 -0500 Subject: no bug - reformat all the code using the new perltidy rules --- clean-bug-user-last-visit.pl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'clean-bug-user-last-visit.pl') diff --git a/clean-bug-user-last-visit.pl b/clean-bug-user-last-visit.pl index 810fe598c..e9b3badda 100755 --- a/clean-bug-user-last-visit.pl +++ b/clean-bug-user-last-visit.pl @@ -31,8 +31,6 @@ Bugzilla->usage_mode(USAGE_MODE_CMDLINE); my $dbh = Bugzilla->dbh; my $sql = 'DELETE FROM bug_user_last_visit WHERE last_visit_ts < ' - . $dbh->sql_date_math('NOW()', - '-', - Bugzilla->params->{last_visit_keep_days}, - 'DAY'); + . $dbh->sql_date_math('NOW()', '-', Bugzilla->params->{last_visit_keep_days}, + 'DAY'); $dbh->do($sql); -- cgit v1.2.3-24-g4f1b