Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@skoranda
Latest commit e53f518 Feb 21, 2019 History
Changes necessary to ingegrate COmanage Registry with Mailman 3.2.0.
1 contributor

Users who have contributed to this file

executable file 10 lines (7 sloc) 243 Bytes
#!/usr/bin/env python3
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)