summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-12-05 00:25:32 -0500
committerChris McDonough <chrism@plope.com>2011-12-05 00:25:32 -0500
commita86a0193a6b875bd80bbee73707fd072c24da08c (patch)
tree6cf08de106b2030f58e6a29e572fc7c79a2f1d45
parent74e69aa12483325039ad64d9b7494ed20ddcb2b1 (diff)
downloadpyramid-a86a0193a6b875bd80bbee73707fd072c24da08c.tar.gz
pyramid-a86a0193a6b875bd80bbee73707fd072c24da08c.tar.bz2
pyramid-a86a0193a6b875bd80bbee73707fd072c24da08c.zip
use the project name rather than the package name in populate warning; fixes #365
-rw-r--r--pyramid/scaffolds/__init__.py4
1 files 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