Reputation: 3775
Is there a way to use manage.py from another directory to create makemessages for an installed_app?
├── common
│ ├── common
│ │ ├── tracking
│ │ │ ├── locale
├── car
│ ├── interfaces
│ │ ├── control
│ │ │ ├── manage.py
Upvotes: 0
Views: 446
Reputation: 668
You can access it from directory bellow like this:
python ../manage.py makemessages
if it is two directories bellow:
python ../../manage.py makemessages
Upvotes: 1