From d328d4097f2e4f1bbbffaf913880ef11fe8b16a2 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(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm index a5b08a20c..df30e34cb 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -417,7 +417,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.3-24-g4f1b