From a089136fea94dee57bf19429006e75b74e5a209e Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 15 Feb 2021 20:54:47 -0500 Subject: [PATCH] fix missing stdout template var on /add when not rendering success page --- archivebox/core/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/archivebox/core/views.py b/archivebox/core/views.py index 427ab1e4..c954946a 100644 --- a/archivebox/core/views.py +++ b/archivebox/core/views.py @@ -253,6 +253,7 @@ class AddView(UserPassesTestMixin, FormView): 'absolute_add_path': self.request.build_absolute_uri(self.request.path), 'VERSION': VERSION, 'FOOTER_INFO': FOOTER_INFO, + 'stdout': '', } def form_valid(self, form):