diff options
| author | Joar Wandborg <git@wandborg.com> | 2012-09-15 16:54:14 +0200 | 
|---|---|---|
| committer | Joar Wandborg <git@wandborg.com> | 2012-09-15 16:54:14 +0200 | 
| commit | 999f91eb8a220ee9a69c0678aa2803c63e80c903 (patch) | |
| tree | 1ca47ae99165f1a0e8354d7046213dccf1a697e5 | |
| parent | 4504dbba9b111a0f6648f94c970c429b644f1ab4 (diff) | |
| download | mediagoblin-999f91eb8a220ee9a69c0678aa2803c63e80c903.tar.lz mediagoblin-999f91eb8a220ee9a69c0678aa2803c63e80c903.tar.xz mediagoblin-999f91eb8a220ee9a69c0678aa2803c63e80c903.zip | |
Fixed typo in API post_entry
| -rw-r--r-- | mediagoblin/plugins/api/views.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/mediagoblin/plugins/api/views.py b/mediagoblin/plugins/api/views.py index 5508f8b0..6a58fabf 100644 --- a/mediagoblin/plugins/api/views.py +++ b/mediagoblin/plugins/api/views.py @@ -57,7 +57,7 @@ def post_entry(request):      entry.title = unicode(request.POST.get('title')              or splitext(media_file.filename)[0]) -    entry.descriptions = unicode(request.POST.get('description')) +    entry.description = unicode(request.POST.get('description'))      entry.license = unicode(request.POST.get('license', ''))      entry.uploader = request.user.id | 
