From 0b3bc808ad02758bcea52d299172bfeb97a775a3 Mon Sep 17 00:00:00 2001 From: Adam Thomas Date: Fri, 30 Oct 2015 14:22:33 +0000 Subject: [PATCH] Tweak some syntax. --- .travis.yml | 2 +- incuna_mail.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index dd33a64..e09750a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ notifications: email: false env: matrix: - - DJANGO_VERSION='django>=1.8,<1.9' + - DJANGO_VERSION='django~=1.8.5' install: - pip install $DJANGO_VERSION - pip install -e . diff --git a/incuna_mail.py b/incuna_mail.py index 125e869..993db05 100644 --- a/incuna_mail.py +++ b/incuna_mail.py @@ -9,8 +9,8 @@ def listify(obj): def send(template_name, sender=None, to=None, cc=None, bcc=None, subject='mail', - attachments=(), reply_to=None, html_template_name=None, context=None, - headers=None): + attachments=(), html_template_name=None, context=None, headers=None, + reply_to=None): """ Render and send an email. `template_name` is a plaintext template.