From 4f93beae74e2d03263ab5daeb039c1710bed65f9 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 10 Oct 2019 15:52:35 -0400 Subject: [PATCH] Fix base class name Signed-off-by: Roberto Rosario --- mayan/apps/sources/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/sources/views.py b/mayan/apps/sources/views.py index 131b2bc624..782a4779c8 100644 --- a/mayan/apps/sources/views.py +++ b/mayan/apps/sources/views.py @@ -472,7 +472,7 @@ class DocumentVersionUploadInteractiveView(UploadBaseView): return context -class DocumentPagesAppendView(UploadInteractiveVersionView): +class DocumentPagesAppendView(DocumentVersionUploadInteractiveView): def get_document_form_initial(self): return { 'append_pages': True,