From 0a2c9378582443bf62911a34706dd571bf2faad7 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sat, 8 Oct 2016 13:09:18 -0400 Subject: nit: wrong method call in Bugzilla::Migrate --- Bugzilla/Migrate.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm index 148567d86..7865c842d 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -403,7 +403,7 @@ sub parse_date { } my $tz; if ($time[6]) { - $tz = DateTime::TimeZone->local_timezone->offset_as_string($time[6]); + $tz = DateTime::TimeZone->offset_as_string($time[6]); } else { $tz = $self->config('timezone'); -- cgit v1.2.1