From 1e29502b9bbb4376b823a8d3ff8ffeca9047553d Mon Sep 17 00:00:00 2001 From: Brian Simpson Date: Thu, 24 Oct 2013 00:52:21 -0400 Subject: [PATCH] Fix typo in refund emailer. --- r2/r2/lib/emailer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/lib/emailer.py b/r2/r2/lib/emailer.py index bdcd63811..ec222f5e4 100644 --- a/r2/r2/lib/emailer.py +++ b/r2/r2/lib/emailer.py @@ -271,7 +271,7 @@ def finished_promo(thing): def refunded_promo(thing): - return _promo_email(thing, Email.Kind.REFUNDED_CAMPAIGN) + return _promo_email(thing, Email.Kind.REFUNDED_PROMO) def send_html_email(to_addr, from_addr, subject, html, subtype="html"):