brutimus wrote:
> {% block content %}
>     <relative location of random character>
> {% include "whatever.html" %}
> {% endblock %}

This is most certainly a BOM -- Byte Order Mark of a UTF-8 charset that 
your text editor has added at the beginning of the 'whatever.html'. It's 
a part of UTF-8 and those symbols are normally not seen when they are at 
the beginning of the string. However here this string is included in the 
middle of another and symbols are visible.

It looks like a bug in Django, it should strip BOM when loading utf-8 
templates... For now you may try to work around it by trying to set up 
you editor to not save a BOM (if it can do this).

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to