aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@netscape.net>2017-08-04 02:18:27 +0200
committerFrédéric Buclin <LpSolit@netscape.net>2017-08-04 02:18:27 +0200
commitbdcda45effd2fec32779200c4ee42e957c8ce0d9 (patch)
treeae6347d5a748c56e52562ba97daaca029b144776
parent0e3e52ad51c412fae8c370a23fbfe1048b73ca71 (diff)
downloadbugs-bdcda45effd2fec32779200c4ee42e957c8ce0d9.tar
bugs-bdcda45effd2fec32779200c4ee42e957c8ce0d9.tar.gz
bugs-bdcda45effd2fec32779200c4ee42e957c8ce0d9.tar.bz2
bugs-bdcda45effd2fec32779200c4ee42e957c8ce0d9.tar.xz
bugs-bdcda45effd2fec32779200c4ee42e957c8ce0d9.zip
Load DateTime::TimeZone before using it
(upstream should care a bit more...)
-rw-r--r--Bugzilla/Migrate.pm1
-rw-r--r--Bugzilla/Util.pm1
2 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm
index 7865c842d..8db40031c 100644
--- a/Bugzilla/Migrate.pm
+++ b/Bugzilla/Migrate.pm
@@ -27,6 +27,7 @@ use Bugzilla::Version;
use Data::Dumper;
use Date::Parse;
use DateTime;
+use DateTime::TimeZone;
use Fcntl qw(SEEK_SET);
use File::Basename;
use List::Util qw(first);
diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm
index 5fe64621b..9d388699d 100644
--- a/Bugzilla/Util.pm
+++ b/Bugzilla/Util.pm
@@ -32,6 +32,7 @@ use Bugzilla::Error;
use Date::Parse;
use Date::Format;
+use DateTime::TimeZone;
use Digest;
use Email::Address;
use List::Util qw(first);