diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-05-08 13:49:47 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-05-08 13:49:47 +0100 |
commit | de0c375add6b0780355d833b104ebf04333c4729 (patch) | |
tree | cee5a65390de056149413f4ec094006dab69438e /bin | |
parent | 2d9bcdd370457d28528e7714f54b6c76694087d6 (diff) |
Move to Digest::SHA, as ::SHA1 is no longer packaged in Debian.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/rotate-photos | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rotate-photos b/bin/rotate-photos index 31a60ff6c..7b8109d65 100755 --- a/bin/rotate-photos +++ b/bin/rotate-photos @@ -16,7 +16,7 @@ use FindBin; use lib "$FindBin::Bin/../perllib"; use lib "$FindBin::Bin/../commonlib/perllib"; -use Digest::SHA1 qw(sha1_hex); +use Digest::SHA qw(sha1_hex); use Utils; use mySociety::Config; |