X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/fa522c1bbf16351ce4dc32b003733b9447404581..a5189986a74c6d9be4c047dcf84e2508498dce06:/models.py diff --git a/models.py b/models.py index dcb5d74..eb6ebc0 100644 --- a/models.py +++ b/models.py @@ -286,8 +286,7 @@ class File(Node): class Template(TreeModel): name = models.CharField(max_length=255) documentation = models.TextField(null=True, blank=True) - mimetype = models.CharField(max_length=255, null=True, blank=True, - help_text='Default: %s' % settings.DEFAULT_CONTENT_TYPE) + mimetype = models.CharField(max_length=255, null=True, blank=True, help_text='Default: %s' % settings.DEFAULT_CONTENT_TYPE) code = models.TextField(verbose_name='django template code') @property