Fix Python formatting in releng.models

This commit is contained in:
Jelle van der Waa 2020-05-22 23:20:54 +02:00
parent ea6a9d9357
commit 1c831f6b5a

View File

@ -23,8 +23,7 @@ class Release(models.Model):
last_modified = models.DateTimeField(editable=False)
available = models.BooleanField(default=True)
info = models.TextField('Public information', blank=True)
torrent_data = models.TextField(blank=True,
help_text="base64-encoded torrent file")
torrent_data = models.TextField(blank=True, help_text="base64-encoded torrent file")
class Meta:
get_latest_by = 'release_date'