From d37aabfb067a7326ea14ff453a70f19c4189c93d Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Sun, 17 Jun 2018 20:14:46 +0100 Subject: [PATCH] Put imports at the top --- src/documents/checks.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/documents/checks.py b/src/documents/checks.py index d564d8e8e..c80b63863 100644 --- a/src/documents/checks.py +++ b/src/documents/checks.py @@ -1,3 +1,5 @@ +import textwrap + from django.conf import settings from django.core.checks import Error, register from django.db.utils import OperationalError @@ -16,13 +18,14 @@ def changed_password_check(app_configs, **kwargs): return [] # No documents table yet if encrypted_doc: + if not settings.PASSPHRASE: return [Error( "The database contains encrypted documents but no password " "is set." )] - elif not GnuPG.decrypted(encrypted_doc.source_file): - import textwrap + + if not GnuPG.decrypted(encrypted_doc.source_file): return [Error(textwrap.dedent( """ The current password doesn't match the password of the