blob: 0721ec6fe06d02c57376c80039cc553fb773f49b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import os
from optparse import make_option
from django.db import connection
from django.core import management
from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User
import settings
"""this is now replaced by databaseRest.py
I don't know why this still exists. Needs testing to see if
removing it makes django misbehave.
"""
class Command(BaseCommand):
def add_arguments(self, parser):
# Positional arguments
parser.add_argument('posargs', nargs='+', type=int)
# Named (optional) arguments
parser.add_argument(
'--delete',
action='store_true',
help='Removed as redundant - use databaseReset.py',
)
def handle(self, *args, **options):
print(args)
print(options)
|