From a86a0193a6b875bd80bbee73707fd072c24da08c Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 5 Dec 2011 00:25:32 -0500 Subject: use the project name rather than the package name in populate warning; fixes #365 --- pyramid/scaffolds/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyramid/scaffolds/__init__.py b/pyramid/scaffolds/__init__.py index 73df62522..1906e0f51 100644 --- a/pyramid/scaffolds/__init__.py +++ b/pyramid/scaffolds/__init__.py @@ -40,9 +40,9 @@ class AlchemyProjectTemplate(PyramidTemplate): def post(self, command, output_dir, vars): # pragma: no cover val = PyramidTemplate.post(self, command, output_dir, vars) self.out('') - self.out('Please run the "populate_%(package)s" script to set up the ' + self.out('Please run the "populate_%(project)s" script to set up the ' 'SQL database after installing (but before starting) the ' 'application (e.g. ' - '"$myvirtualenv/bin/populate_%(package)s development.ini".)' + '"$myvirtualenv/bin/populate_%(project)s development.ini".)' % vars) return val -- cgit v1.2.3