I\'ve written a simple custom command, hello.py:
from django.core.management.base import NoArgsCommand class Command(NoArgsCommand): help = \"prints hello w
It is because the __init__.pyc does not get created automatically within "management" and "commands" folder. Copy your_app/__init__.py and your_app/__init__.pyc and paste it within the management/ and commands/ folder.
__init__.pyc
your_app/__init__.py
your_app/__init__.pyc