Fix #204: missing dot when downloading file

This commit is contained in:
Eliot Berriot 2018-05-15 19:01:49 +02:00
parent 8d2529f4f7
commit 6e168a54ec
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
4 changed files with 14 additions and 2 deletions

View file

@ -467,7 +467,7 @@ class TrackFile(models.Model):
@property
def filename(self):
return '{}{}'.format(
return '{}.{}'.format(
self.track.full_name,
self.extension)