stage fix
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Thu, 6 Oct 2011 11:49:34 +0000 (13:49 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Thu, 6 Oct 2011 11:49:34 +0000 (13:49 +0200)
apps/dvcs/models.py

index 6cfda91..bb79627 100644 (file)
@@ -51,7 +51,7 @@ class Tag(models.Model):
             Returns None for the last stage.
         """
         try:
-            return Tag.objects.filter(ordering__gt=self.ordering)[0]
+            return type(self).objects.filter(ordering__gt=self.ordering)[0]
         except IndexError:
             return None