From 3baf29a6b74e9bb6942843653cf2f50d8048efc7 Mon Sep 17 00:00:00 2001 From: Quinn Casey Date: Tue, 10 May 2022 17:41:09 -0700 Subject: [PATCH] Use currently... importing... instead of "vs" --- src/documents/management/commands/document_importer.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index 92742a487..1a1316059 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -84,9 +84,10 @@ class Command(BaseCommand): if self.version != version.__full_version_str__: self.stdout.write( self.style.WARNING( - "Version mismatch:" - f" {self.version} vs {version.__full_version_str__}." - " Continuing, but import may fail", + "Version mismatch: " + f"Currently {version.__full_version_str__}," + f" importing {self.version}." + " Continuing, but import may fail.", ), )