Mercurial > public > sg101
view manage.py @ 762:840f2579ef1c
Added a test for the forgotten password cycle.
This was broken when I upgraded to Django 1.6. Ensure we catch it next time.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 19 Jan 2014 00:19:44 -0600 |
parents | cc39f34ce12b |
children |
line wrap: on
line source
#!/usr/bin/env python import os, sys if __name__ == "__main__": os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sg101.settings.local") from django.core.management import execute_from_command_line execute_from_command_line(sys.argv)