projects
/
demoscenemusic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e8fed6
)
Return the better artist name.
author
David ‘Bombe’ Roden
<bombe@demoscenemusic.org>
Thu, 9 May 2013 20:41:02 +0000
(22:41 +0200)
committer
David ‘Bombe’ Roden
<bombe@demoscenemusic.org>
Thu, 9 May 2013 20:41:02 +0000
(22:41 +0200)
data/models.py
patch
|
blob
|
history
diff --git
a/data/models.py
b/data/models.py
index
5e0cc94
..
f5eacf8
100644
(file)
--- a/
data/models.py
+++ b/
data/models.py
@@
-46,7
+46,7
@@
class TrackArtist(models.Model):
order = models.IntegerField()
def __unicode__(self):
- return self.artist.
name
+ return self.artist.
__unicode__()
class Meta:
ordering = ['order']
@@
-57,7
+57,7
@@
class RemixArtist(models.Model):
order = models.IntegerField()
def __unicode__(self):
- return self.artist.
name
+ return self.artist.
__unicode__()
class Meta:
ordering = ['order']