aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Email.pm
diff options
context:
space:
mode:
authorDave Arter <davea@mysociety.org>2016-06-15 14:05:42 +0100
committerDave Arter <davea@mysociety.org>2016-06-15 14:11:07 +0100
commit986fcfb9917ad32bbbe059d9f8061f806039e5fa (patch)
tree9705068d4b25ba212d3c93c883ed3f4ffdad0d81 /perllib/FixMyStreet/Email.pm
parentb5b3b8e3cee367a8f82b4179a5d03f4d30e1215e (diff)
Remove stringify call from template paths
Diffstat (limited to 'perllib/FixMyStreet/Email.pm')
-rw-r--r--perllib/FixMyStreet/Email.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Email.pm b/perllib/FixMyStreet/Email.pm
index b12fcfab4..d955f6f72 100644
--- a/perllib/FixMyStreet/Email.pm
+++ b/perllib/FixMyStreet/Email.pm
@@ -93,7 +93,7 @@ sub send_cron {
);
my @include_path = @{ $cobrand->path_to_email_templates($lang_code) };
- push @include_path, FixMyStreet->path_to( 'templates', 'email', 'default' )->stringify;
+ push @include_path, FixMyStreet->path_to( 'templates', 'email', 'default' );
my $tt = Template->new({
ENCODING => 'utf8',
INCLUDE_PATH => \@include_path,