diff options
author | Dylan William Hardison <dylan@hardison.net> | 2016-10-08 19:09:18 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2016-10-08 19:09:18 +0200 |
commit | d328d4097f2e4f1bbbffaf913880ef11fe8b16a2 (patch) | |
tree | e5d08867491a1693b29f80640cc17e8e4a7e2387 /Bugzilla | |
parent | 0d22ef69987f85fca6df9d33f039ffc00a13a5c9 (diff) | |
download | bugzilla-d328d4097f2e4f1bbbffaf913880ef11fe8b16a2.tar.gz bugzilla-d328d4097f2e4f1bbbffaf913880ef11fe8b16a2.tar.xz |
nit: wrong method call in Bugzilla::Migrate
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Migrate.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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'); |