diff options
author | Dan McGee <dan@archlinux.org> | 2010-12-07 17:05:44 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-12-07 17:05:44 -0600 |
commit | 5db6522b35dacf974c0e3a6cfb9d4beebfcee520 (patch) | |
tree | 61786ce2d7ed9c859a78b58c280906641e8e50f6 /mirrors | |
parent | fc3ab08cb5663f9b3189b7e04bfd73e7ba2c3e92 (diff) |
Fix mirror check unicode function
Needed a few self. qualifiers in there.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors')
-rw-r--r-- | mirrors/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mirrors/models.py b/mirrors/models.py index f1286026..e070b1cd 100644 --- a/mirrors/models.py +++ b/mirrors/models.py @@ -80,7 +80,7 @@ class MirrorLog(models.Model): error = models.CharField(max_length=255, blank=True, default='') def __unicode__(self): - return "Check of %s at %s" % (url.url, check_time) + return "Check of %s at %s" % (self.url.url, self.check_time) class Meta: verbose_name = 'Mirror Check Log' |