From: Matthijs Kooijman Date: Sun, 10 Feb 2008 14:48:24 +0000 (+0100) Subject: * Only set notification emails when DEBUG is disabled. X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fprojects%2Fxerxes.git;a=commitdiff_plain;h=7358c0855ff87a97e989f8793208d941002f7202 * Only set notification emails when DEBUG is disabled. --- diff --git a/influences/notify.py b/influences/notify.py index 7b47e8c..6ce979c 100644 --- a/influences/notify.py +++ b/influences/notify.py @@ -1,17 +1,20 @@ from django.db.models import signals from django.dispatch import dispatcher +from django.conf import settings from ee.influences.models import Character,Influence from ee.tools.notify import notify from django.contrib.auth.models import Group def character_saved(instance, created): - notify([instance.player, 'lextalionis@evolution-events.nl'], 'influences/email/character_changed.html', {'character' : instance, 'created' : created}) + if (not settings.DEBUG): + notify([instance.player, 'lextalionis@evolution-events.nl'], 'influences/email/character_changed.html', {'character' : instance, 'created' : created}) dispatcher.connect(character_saved, signals.post_save, Character) def influence_saved(instance, created): - # TODO: Perhaps only notify when the status is / becomes Done? - notify([instance.character.player, 'lextalionis@evolution-events.nl'], 'influences/email/influence_changed.html', {'influence' : instance, 'created' : created}) + if (not settings.DEBUG): + # TODO: Perhaps only notify when the status is / becomes Done? + notify([instance.character.player, 'lextalionis@evolution-events.nl'], 'influences/email/influence_changed.html', {'influence' : instance, 'created' : created}) dispatcher.connect(influence_saved, signals.post_save, Influence) # vim: set sts=4 sw=4 expandtab: