On Fri, Oct 31, 2008 at 1:42 PM, csingley <[EMAIL PROTECTED]> wrote: > report_storage = ReportStorage(location='%s/reports' % > settings.MEDIA_ROOT, > base_url=settings.MEDIA_URL > +'reports')
My guess is that you need a trailing slash here. Without it, the urljoin() function doesn't know 'reports' is a directory, so it strips 'reports' out and replaces it with the path from the database. This is why your settings.py includes the following comment above the MEDIA_URL setting: "Make sure to use a trailing slash if there is a path component" -Gul --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---