Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6470105
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:04:15+00:00 2026-05-25T06:04:15+00:00

I am using django-stdimage2 to rename and resize images in my project. It comes

  • 0

I am using django-stdimage2 to rename and resize images in my project. It comes with the ability to delete images through the Django Admin interface: simply tick a check box and click Save.

I can successfully add an image using the Django Admin but when I try to delete an image this error is returned:

Error Message

TypeError at /admin/app/gear_images/1/
coercing to Unicode: need string or buffer, NoneType found

Model

class gear_images(models.Model):
    def __unicode__(self):
        return self.image.name

    gear_id = models.ForeignKey(gear)
    image = StdImageField(upload_to='images/gear', blank=True, size=(640, 480, True), thumbnail_size=(100, 100, True))
    description = models.CharField(max_length=100)

Possible Cause

I assume an error is returned because the image has already been deleted from the database, so there is nothing to return.

Fix?

What is the correct way to code for this situation?

Edit: Solution Found. Thank you, Vanessa!

def __unicode__(self):
    if self.image is None:
        return "None"
    elif self.image.name is None:
        return "None"
    else:
        return self.image.name

Thank you 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T06:04:16+00:00Added an answer on May 25, 2026 at 6:04 am

    Since the image is not there, it is trying to convert “None” (a NULL item) to unicode, which isn’t going to work. You can test it with:

    def __unicode(self)__:
        if self.image is None:
            return "None"
        else:
            return self.image.name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I using Django tagging project. That is was very stable project. Working on django
I am using django-sitetree on a Django project. It is working fine so far
I´m using django-photologue (with 1pinax) and want to scale images to a box (100px
Using django, I am authenticating the user through Google. I get the initial request
I'm considering using Django for a project I'm starting (fyi, a browser-based game) and
Using Django 1.1: The Django admin docs describe using arbitrary methods or attributes on
Using django-tinymce I have successfully embedded TinyMCE in the Admin before. Embedding it in
I am using Django Non-rel and Django-MongoDB ORM for my project with MongoDB Nosql
Using django comments framework http://docs.djangoproject.com/en/dev/ref/contrib/comments/ Not sure is there option, to make all comments
Using Django 1.1, I am trying to select the maximum value from a varchar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.