~psivaa/uci-engine/lander-jenkins-with-proxy

« back to all changes in this revision

Viewing changes to ppa-assigner/manage.py

  • Committer: Tarmac
  • Author(s): Andy Doan
  • Date: 2013-12-06 23:25:38 UTC
  • mfrom: (6.1.22 ppa-assigner)
  • Revision ID: tarmac-20131206232538-auo3c8yhml7wbnee
[r=Francis Ginther] adds first pass of ppa-assigner

more changes to come following design updates.  from Andy Doan

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
import os
 
3
import sys
 
4
 
 
5
if __name__ == "__main__":
 
6
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ppa_assigner.settings")
 
7
 
 
8
    from django.core.management import execute_from_command_line
 
9
 
 
10
    execute_from_command_line(sys.argv)