django-dropbox
django-dropbox copied to clipboard
ImportError: cannot import name 'NoArgsCommand'
I had follow the steps, configured the DROPBOX_CONSUMER_KEY and DROPBOX_CONSUMER_SECRET.
Buy when I run the command
python manage.py get_dropbox_token
This throw me the following error:
File "D:\Joshe\Documentos\Platzi\django\trabajoTitulacion\sgtt\lib\site-packages\django_dropbox\management\commands\ge t_dropbox_token.py", line 2, in
from django.core.management.base import NoArgsCommand ImportError: cannot import name 'NoArgsCommand'
Can help me please?
Which python and django version are you using?
Changing
from django.core.management.base import NoArgsCommand
to
from django.core.management.base import BaseCommand
and
class Command(NoArgsCommand):
to
class Command(BaseCommand):
in get_dropbox_token.py might help?