12 lines
266 B
Python
12 lines
266 B
Python
'''
|
|
Used for pydev eclipse. Should be innocuous for everyone else.
|
|
Created on May 8, 2013
|
|
|
|
@author: dmitchell
|
|
'''
|
|
#!/home/<username>/mitx_all/python/bin/python
|
|
from django.core import management
|
|
|
|
if __name__ == '__main__':
|
|
management.execute_from_command_line()
|