Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Commit

Permalink
Use new Digest::SHA module instead of old Digest::SHA1
Browse files Browse the repository at this point in the history
There are no functional changes to using the new module when using SHA1,
but only the new name is available on Debian wheezy.
  • Loading branch information
Ian Chard committed Sep 6, 2013
1 parent 170a1b2 commit f62e4a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/send-hassles
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use lib "$FindBin::Bin/../commonlib/perllib";

use DBI;
use DBD::Pg;
use Digest::SHA1 qw(sha1_hex);
use Digest::SHA qw(sha1_hex);
use IO::Pipe;
use Getopt::Long;

Expand Down
2 changes: 1 addition & 1 deletion perllib/Hassle.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package Hassle;

use DBI;
use DBD::Pg;
use Digest::SHA1 qw(sha1_hex);
use Digest::SHA qw(sha1_hex);
use IO::Pipe;
use MIME::QuotedPrint;
use mySociety::Email;
Expand Down

0 comments on commit f62e4a6

Please sign in to comment.