tags:

views:

42

answers:

2

How i can get the current settings in a custom command and not the defaul settings?

A: 

With the attribut can_import_settings = True in your class Command

diegueus9
A: 

from django.conf import settings

Gattster