Commit ec9c03ce authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

Added an editorial comment to a test.

This is to stop me trying to "fix" that piece of code again in the future.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10012 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent d45e24a1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -48,7 +48,10 @@ class Worker(models.Model):

class BrokenUnicodeMethod(models.Model):
    name = models.CharField(max_length=7)

    def __unicode__(self):
        # Intentionally broken (trying to insert a unicode value into a str
        # object).
        return 'Názov: %s' % self.name