Hello,
In my app I am using custom user model with my own createsuperuser command.
However after updating my dev to Django 1.7 I've realized that behaviour of commands discoverer was changed from "last one wins", to "first_one_wins" so first command discovered is preffered instead.
I've fixed this temporarily by moving my app above contrib.auth in INSTALLED_APPS, but this seems hacky to me.
Is there other way to override management commands?