summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Granberg <zorry@gentoo.org>2016-11-22 23:05:38 +0100
committerMagnus Granberg <zorry@gentoo.org>2016-11-22 23:05:38 +0100
commit7999e14da3190d9f44e70a5dfbe1b2cedf55a5df (patch)
treef35a6bc92360445134ea461a10454bf01caaa91a /python/tbc_www/models.py
parentupdate conf files database (diff)
downloadtinderbox-cluster-www-7999e14da3190d9f44e70a5dfbe1b2cedf55a5df.tar.gz
tinderbox-cluster-www-7999e14da3190d9f44e70a5dfbe1b2cedf55a5df.tar.bz2
tinderbox-cluster-www-7999e14da3190d9f44e70a5dfbe1b2cedf55a5df.zip
Update for django 1.10 and fix links for css and js
Diffstat (limited to 'python/tbc_www/models.py')
-rw-r--r--python/tbc_www/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tbc_www/models.py b/python/tbc_www/models.py
index 0d58bc1..a0a25f3 100644
--- a/python/tbc_www/models.py
+++ b/python/tbc_www/models.py
@@ -74,7 +74,7 @@ class EbuildsMetadata(models.Model):
class Meta:
db_table = 'ebuilds_metadata'
def __str__(self):
- return '%s %s %s %s %s' % (self.Id, self.EbuildId, self,Commit, self.New, self.Descriptions)
+ return '%s %s %s %s %s' % (self.Id, self.EbuildId, self.Commit, self.New, self.Descriptions)
class BuildLogs(models.Model):
BuildLogId = models.IntegerField(primary_key=True, db_column='build_log_id')