From 8ab9bf523fd9b5b5802979bf8f2a022e7d1f3760 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 27 Oct 2019 14:53:17 -0400 Subject: [PATCH] Fix platformtemplate command help message Signed-off-by: Roberto Rosario --- HISTORY.rst | 1 + mayan/apps/platform/management/commands/platformtemplate.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c9d1a6d2f4..8653101449 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,7 @@ - Move IMAPMockServer to its own module. - Display feedback message when testing a mailing profile. - Add tests to the platform app. +- Fix platformtemplate command --context option help message. 3.2.8 (2019-10-01) ================== diff --git a/mayan/apps/platform/management/commands/platformtemplate.py b/mayan/apps/platform/management/commands/platformtemplate.py index 4c881b0542..f830c4177b 100644 --- a/mayan/apps/platform/management/commands/platformtemplate.py +++ b/mayan/apps/platform/management/commands/platformtemplate.py @@ -16,8 +16,8 @@ class Command(management.BaseCommand): ) parser.add_argument( '--context', action='store', default='', dest='context', - help='Pass a context to the template in the form of a JSON encoded ' - 'dictionary.', + help='Pass a context to the template in the form of a YAML ' + 'encoded dictionary.', ) def handle(self, *args, **options):