From 52b0249d711812a1b4d656cbcadebb9b71c42117 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sun, 27 May 2018 14:28:41 +0100 Subject: [PATCH] Don't run document checks if table doesn't exist yet --- src/documents/checks.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/documents/checks.py b/src/documents/checks.py index b3b8729c4..2f7ebd89e 100644 --- a/src/documents/checks.py +++ b/src/documents/checks.py @@ -1,4 +1,5 @@ from django.core.checks import Warning, register +from django.db.utils import OperationalError @register() @@ -17,10 +18,12 @@ def changed_password_check(app_configs, **kwargs): "re-import them." ) - document = Document.objects.order_by("-pk").filter( - storage_type=Document.STORAGE_TYPE_GPG - ).first() + try: + document = Document.objects.order_by("-pk").filter( + storage_type=Document.STORAGE_TYPE_GPG).first() + if document and not GnuPG.decrypted(document.source_file): + return [Warning(warning.format(document))] + except OperationalError: + pass # No documents table yet - if document and not GnuPG.decrypted(document.source_file): - return [Warning(warning.format(document))] return []