Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have this code from the django sample tutorial

from django.db import models
from datetime import datetime

# Create your models here.

class Poll(models.Model):
    question = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')

    def __unicode__(self):
        return self.question

    def was_published_today(self):
        return self.pub_date.date() == datetime.date.today()  

and i am getting this error: IndentationError: unexpected indent

on this line:

def __unicode__(self):

any idea what is wrong ??

share|improve this question

4 Answers

up vote 8 down vote accepted

My only guess is you have tabs mixed with spaces.

It's recommended to use spaces over tabs, with 4 spaces per indentation. http://www.python.org/dev/peps/pep-0008/

Do you have invisible characters visible on your editor to make sure that isn't the case?

PS: your reputation graph says -6000 and it's really bugging me out.

share|improve this answer

Probably this is because you did copy/paste from the tutorial. Pay special attention to the tabs and spaces.

Hope it helps.

share|improve this answer
thanks - this helped me. don't copy and paste from the tutorial! – Tomba Feb 16 '12 at 10:01

Sometimes it can be hard work with big files to find where error is, so you can install pep8 http://pypi.python.org/pypi/pep8 module and use it from command line

$ pep8 a.py 
a.py:1:4: W191 indentation contains tabs
a.py:1:4: E101 indentation contains mixed spaces and tabs
a.py:1:5: E113 unexpected indentation
share|improve this answer

Python INDENTION will be responsible most of the time, to work correclty, use the editor or separate out the _unicode_(self) with tab

      def __unicode__(self):  # Python 3: def __str__(self):
            return str(self.name)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.