diff options
| author | Chris McDonough <chrism@plope.com> | 2012-03-14 13:56:57 -0700 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-03-14 13:56:57 -0700 |
| commit | 0da8d191a5e11d7cd4aaec6ada267857fb5fa4a3 (patch) | |
| tree | 0a87eaf71d8f1a3ccf4c576ff5aa5db7ac014a03 | |
| parent | 34942793f03dea9d7f13b6e00d34946dee98d098 (diff) | |
| download | pyramid-0da8d191a5e11d7cd4aaec6ada267857fb5fa4a3.tar.gz pyramid-0da8d191a5e11d7cd4aaec6ada267857fb5fa4a3.tar.bz2 pyramid-0da8d191a5e11d7cd4aaec6ada267857fb5fa4a3.zip | |
remove confusing output related to issue #481
| -rw-r--r-- | pyramid/scaffolds/__init__.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/pyramid/scaffolds/__init__.py b/pyramid/scaffolds/__init__.py index ad5753713..d8fb9a62f 100644 --- a/pyramid/scaffolds/__init__.py +++ b/pyramid/scaffolds/__init__.py @@ -1,6 +1,5 @@ import binascii import os -import sys from pyramid.compat import native_ @@ -51,16 +50,3 @@ class ZODBProjectTemplate(PyramidTemplate): class AlchemyProjectTemplate(PyramidTemplate): _template_dir = 'alchemy' summary = 'Pyramid SQLAlchemy project using url dispatch' - def post(self, command, output_dir, vars): # pragma: no cover - val = PyramidTemplate.post(self, command, output_dir, vars) - vars = vars.copy() - vars['output_dir'] = output_dir - vars['pybin'] = os.path.join(sys.exec_prefix, 'bin') - self.out('') - self.out('Please run the "populate_%(project)s" script to set up the ' - 'SQL database after\ninstalling (but before starting) the ' - 'application.\n\n For example:\n\ncd %(output_dir)s\n' - '%(pybin)s/python setup.py develop\n' - '%(pybin)s/populate_%(project)s development.ini' - % vars) - return val |
