mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-31 20:20:24 +00:00
11 lines
326 B
Python
Executable file
11 lines
326 B
Python
Executable file
#!/Users/utkucanbiyikli/Desktop/Projects/django-notifications/env/bin/python3
|
|
|
|
# -*- 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())
|