Mercurial > public > sg101
diff gpp/downloads/models.py @ 206:272d3a8c98e8
Some minor tweaks made while rebuilding the development database after Ubuntu 10.04 install.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 03 May 2010 02:49:31 +0000 |
parents | b4305e18d3af |
children | 77b606e0ad5f |
line wrap: on
line diff
--- a/gpp/downloads/models.py Sat May 01 22:25:49 2010 +0000 +++ b/gpp/downloads/models.py Mon May 03 02:49:31 2010 +0000 @@ -119,7 +119,7 @@ class AllowedExtension(models.Model): """Model to represent the list of allowed file extensions.""" - extension = models.CharField(max_length=8) + extension = models.CharField(max_length=8, help_text="e.g. .txt") objects = AllowedExtensionManager()