diff options
author | Matthew Somerville <matthew@mysociety.org> | 2019-06-12 13:29:25 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2019-06-12 13:29:25 +0100 |
commit | 493984c28055333dc9f7736724d77eb50b6d5007 (patch) | |
tree | c00d55a65bf102e14291e5bbb4388aa9da4c8f83 | |
parent | c97cda999579558694f452d3f76e98cc347f8e99 (diff) |
Fix missing package requirement.
-rw-r--r-- | perllib/FixMyStreet/App/Model/PhotoSet.pm | 1 | ||||
-rw-r--r-- | perllib/FixMyStreet/PhotoStorage.pm | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/App/Model/PhotoSet.pm b/perllib/FixMyStreet/App/Model/PhotoSet.pm index 1d9ccd7cd..c9f1c48a1 100644 --- a/perllib/FixMyStreet/App/Model/PhotoSet.pm +++ b/perllib/FixMyStreet/App/Model/PhotoSet.pm @@ -8,7 +8,6 @@ use Scalar::Util 'openhandle', 'blessed'; use Image::Size; use IPC::Cmd qw(can_run); use IPC::Open3; -use MIME::Base64; use FixMyStreet; use FixMyStreet::ImageMagick; diff --git a/perllib/FixMyStreet/PhotoStorage.pm b/perllib/FixMyStreet/PhotoStorage.pm index 558c93749..9b0e5c9c3 100644 --- a/perllib/FixMyStreet/PhotoStorage.pm +++ b/perllib/FixMyStreet/PhotoStorage.pm @@ -1,5 +1,6 @@ package FixMyStreet::PhotoStorage; +use MIME::Base64; use Moose; use Digest::SHA qw(sha1_hex); use Module::Load; |