14 lines
437 B
Python
14 lines
437 B
Python
#coding: utf-8
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
|
|
from allauth_ens.adapter import deprecate_clippers
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Deprecates clipper SocialAccounts so as to avoid conflicts'
|
|
|
|
def add_arguments(self, parser):
|
|
pass
|
|
|
|
def handle(self, *args, **options):
|
|
deprecate_clippers()
|
|
self.stdout.write(self.style.SUCCESS(u'Clippers deprecation successful'))
|