This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Author: Rob Moore <[email protected]>""" | |
import logging | |
import signal | |
import struct | |
import sys | |
from django.contrib.auth.models import check_password | |
from django.contrib.auth.models import User | |
from django.core.management.base import BaseCommand |
NewerOlder