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):