From 3f86dfc902a7fdf5736cfee073d651a46e199806 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 15 Jun 2019 02:25:00 -0400 Subject: [PATCH] Fix typo Signed-off-by: Roberto Rosario --- mayan/apps/documents/models/document_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/models/document_models.py b/mayan/apps/documents/models/document_models.py index 2b05840a84..9f205226c8 100644 --- a/mayan/apps/documents/models/document_models.py +++ b/mayan/apps/documents/models/document_models.py @@ -36,7 +36,7 @@ class Document(models.Model): """ uuid = models.UUIDField( default=uuid.uuid4, editable=False, help_text=_( - 'UUID of a document, universally Unique ID. An unique identifier' + 'UUID of a document, universally Unique ID. An unique identifier ' 'generated for each document.' ), verbose_name=_('UUID') )