diff --git a/wagtail/bin/wagtail.py b/wagtail/bin/wagtail.py index b44c2dcef8..36d2f3f37f 100644 --- a/wagtail/bin/wagtail.py +++ b/wagtail/bin/wagtail.py @@ -10,7 +10,7 @@ from django.core.management import ManagementUtility def create_project(parser, options, args): # Validate args if len(args) < 2: - parser.error("Please specify a name for your wagtail installation") + parser.error("Please specify a name for your Wagtail installation") elif len(args) > 3: parser.error("Too many arguments") @@ -30,11 +30,11 @@ def create_project(parser, options, args): "Python module and cannot be used as a project " "name. Please try another name." % project_name) - print("Creating a wagtail project called %(project_name)s" % {'project_name': project_name}) + print("Creating a Wagtail project called %(project_name)s" % {'project_name': project_name}) - # Create the project from the wagtail template using startapp + # Create the project from the Wagtail template using startapp - # First find the path to wagtail + # First find the path to Wagtail import wagtail wagtail_path = os.path.dirname(wagtail.__file__) template_path = os.path.join(wagtail_path, 'project_template') @@ -52,7 +52,7 @@ def create_project(parser, options, args): utility = ManagementUtility(utility_args) utility.execute() - print("Success! %(project_name)s is created" % {'project_name': project_name}) + print("Success! %(project_name)s has been created" % {'project_name': project_name}) COMMANDS = {