- f = IOFile.from_filename(attachment.file.name)
- name = os.path.basename(attachment.file.name)
- attachments[name.decode('utf-8')] = f
- attachments.setdefault(name.replace(" ", "").decode('utf-8'), f)
+ full_name = os.path.join(settings.MEDIA_ROOT, attachment.file.name)
+ f = IOFile.from_filename(full_name)
+ attachments['%s.%s' % (attachment.slug, attachment.ext)] = f