Hello,

I need some help with a strange problem, the traceback says:


File "/usr/lib/python2.5/site-packages/django/core/files/storage.py" in size
  216.         return os.path.getsize(self.path(name))
File "/usr/lib/python2.5/posixpath.py" in getsize
  139.     return os.stat(filename).st_size

Exception Type: TemplateSyntaxError at
/resource/news/un-nuovo-ostello-sulla-francigena/
Exception Value: Caught UnicodeEncodeError while rendering: 'ascii' codec
can't encode character u'\xe0' in position 108: ordinal not in range(128)

filename=u'/public_html/itineraria/site_media/attachments/resources_news/Rivista
Oltre - ostello santhi\xe0.pdf'


If I try this very same code from the python shell it runs without any
problem, I'm on Ubuntu Gutsy if that matters, and DB is UTF-8 as my source
files are Django is SVN trunk.

Deployment is with mod_wsgi.


This works fine from IPython shell:

In [18]:
fn=u'/public_html/itineraria/site_media/attachments/resources_news/Rivista
Oltre - ostello santhi\xe0.pdf'

In [19]: fn
Out[19]:
u'/public_html/itineraria/site_media/attachments/resources_news/Rivista
Oltre - ostello santhi\xe0.pdf'


In [20]: os.stat(fn)
Out[20]: (33261, 1916930, 2049L, 1, 33, 33, 354361, 1268068890, 1268068890,
1268068890)


Thanks for any suggestion.
-- 
Alessandro Pasotti
w3:   www.itopen.it

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to