app/django/bin/make-messages.py
author Lennard de Rijk <ljvderijk@gmail.com>
Wed, 17 Dec 2008 22:15:21 +0000
changeset 757 b11cee4ab535
parent 323 ff1a9aa48cfd
permissions -rwxr-xr-x
Added email message when receiving a notification.py At the moment this only triggers when the new notification is your first unread message. Also fixed an url bug in the invite notification. Patch by: Lennard de Rijk

#!/usr/bin/env python

if __name__ == "__main__":
    import sys
    name = sys.argv[0]
    args = ' '.join(sys.argv[1:])
    print >> sys.stderr, "%s has been moved into django-admin.py" % name
    print >> sys.stderr, 'Please run "django-admin.py makemessages %s" instead.'% args
    print >> sys.stderr
    sys.exit(1)