diff options
-rw-r--r-- | apps/patchwork/views/bundle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/patchwork/views/bundle.py b/apps/patchwork/views/bundle.py index 5f990c4..d8e4e2f 100644 --- a/apps/patchwork/views/bundle.py +++ b/apps/patchwork/views/bundle.py @@ -173,6 +173,6 @@ def public(request, username, bundlename): filter_settings = filter_settings, patches = bundle.patches.all()) - context.update({'bundle': bundle, - 'user': user}); + context['bundle'] = bundle + return render_to_response('patchwork/bundle-public.html', context) |