Bugfix.

portnov [2008-06-20 09:22:21]
Bugfix.
Filename
pygit/models.py
diff --git a/pygit/models.py b/pygit/models.py
index 320f9d7..7c4e519 100644
--- a/pygit/models.py
+++ b/pygit/models.py
@@ -5,7 +5,7 @@ class GitRepo(models.Model):
   name = models.CharField(_("Name"),max_length=64)
   path = models.CharField(_("Path"),max_length=255)

-  def __unicode(self):
+  def __unicode__(self):
     return self.name

   class Meta:
ViewGit