mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-04 02:58:16 +00:00
12 lines
307 B
Plaintext
12 lines
307 B
Plaintext
|
|
#!/home/brad/Development/ChannelsDrawShare/venv/bin/python
|
||
|
|
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
import re
|
||
|
|
import sys
|
||
|
|
|
||
|
|
from django.core.management import execute_from_command_line
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||
|
|
sys.exit(execute_from_command_line())
|