Fixed a syntax error in edit/views and added back in some missing license stuff from models

This commit is contained in:
Aaron Williamson
2012-01-17 01:22:02 -05:00
parent 0bfb4dc249
commit a6c49d49dc
2 changed files with 10 additions and 3 deletions

View File

@@ -47,8 +47,8 @@ def edit_media(request, media):
title=media.title,
slug=media.slug,
description=media.description,
tags=media_tags_as_string(media.tags))
license=media.license)
tags=media_tags_as_string(media.tags),
license=media.license))
form = forms.EditForm(
request.POST,