UnicodeEncodeError: 'charmap' codec can't encode character DJANGO

I am getting this error:

UnicodeEncodeError: 'charmap' codec can't encode character '\u064f' in position 3583: character maps to <undefined>

while running command:

python manage.py makemessages -all

can anybody help me what's wrong here?

run :

py manage.py makemessages -all

then it should add all strings which are calling _() method should be added to .po file.

Back to Top