aboutsummaryrefslogtreecommitdiffstats
path: root/bin/send-alerts
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@balti.ukcod.org.uk>2010-11-22 16:16:30 +0000
committerMatthew Somerville <matthew@balti.ukcod.org.uk>2010-11-23 16:54:49 +0000
commitaaf1099a48feb5e7d6a76c0560c6be12ee4da9df (patch)
tree6de5d936635be5326342566af720eef3fe7c62e2 /bin/send-alerts
parentfadd20a3350e9032ef3dfc8b4e2faf340d5f0af2 (diff)
Move mySociety::Alert to FixMyStreet::Alert.
Diffstat (limited to 'bin/send-alerts')
-rwxr-xr-xbin/send-alerts4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/send-alerts b/bin/send-alerts
index 57eeb16ae..c52af4059 100755
--- a/bin/send-alerts
+++ b/bin/send-alerts
@@ -21,7 +21,7 @@ use CronFns;
use mySociety::Config;
use mySociety::DBHandle qw(dbh);
-use mySociety::Alert;
+use FixMyStreet::Alert;
BEGIN {
mySociety::Config::set_file("$FindBin::Bin/../conf/general");
@@ -37,5 +37,5 @@ BEGIN {
my $site = CronFns::site(mySociety::Config::get('BASE_URL'));
CronFns::language($site);
my $testing_email = mySociety::Config::get('TESTING_EMAIL');
-mySociety::Alert::email_alerts($testing_email);
+FixMyStreet::Alert::email_alerts($testing_email);