diff options
author | Nishanth Amuluru | 2011-01-06 00:17:53 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-06 00:17:53 +0530 |
commit | 355ebf04064a1220407ef762edfe9b5440ade27d (patch) | |
tree | 4ec695b067fd8dd2cc63ed9321dd7bbae00fe0e7 /taskapp/views | |
parent | a495dcc55f091073554e8c962381687ac69ee3e0 (diff) | |
download | pytask-355ebf04064a1220407ef762edfe9b5440ade27d.tar.gz pytask-355ebf04064a1220407ef762edfe9b5440ade27d.tar.bz2 pytask-355ebf04064a1220407ef762edfe9b5440ade27d.zip |
corrected a typo
Diffstat (limited to 'taskapp/views')
-rw-r--r-- | taskapp/views/task.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taskapp/views/task.py b/taskapp/views/task.py index b638fae..e0749ca 100644 --- a/taskapp/views/task.py +++ b/taskapp/views/task.py @@ -68,7 +68,7 @@ def upload_work(request, tid): pass else: form = WorkReportForm() - context.update("form":form) + context.update({"form":form}) return render_to_response('task/report.html', context) |