diff options
| author | Chris McDonough <chrism@plope.com> | 2011-03-20 18:14:51 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-03-20 18:14:51 -0400 |
| commit | a07165022e08a5ed4967dd0142d6eedc767d7105 (patch) | |
| tree | 40a2512880a11d314c7f42a1dad3689ff636942e | |
| parent | 6ed41a034df40dcc6632432544742ebefe3162ba (diff) | |
| download | pyramid-a07165022e08a5ed4967dd0142d6eedc767d7105.tar.gz pyramid-a07165022e08a5ed4967dd0142d6eedc767d7105.tar.bz2 pyramid-a07165022e08a5ed4967dd0142d6eedc767d7105.zip | |
dont bother covering post method
| -rw-r--r-- | pyramid/paster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/paster.py b/pyramid/paster.py index aef7d0d33..bc1573fb8 100644 --- a/pyramid/paster.py +++ b/pyramid/paster.py @@ -19,7 +19,7 @@ class PyramidTemplate(Template): vars['package_logger'] = package_logger return Template.pre(self, command, output_dir, vars) - def post(self, *arg, **kw): + def post(self, *arg, **kw): # pragma: no cover print 'Welcome to Pyramid. Sorry for the convenience.' return Template.post(self, *arg, **kw) |
