diff options
| author | Tres Seaver <tseaver@palladion.com> | 2017-09-12 12:59:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-12 12:59:09 -0400 |
| commit | 11fd4448711e3fc2f9c6a7f5971110a885a8ee1c (patch) | |
| tree | efd577165701c92fd4e283a182f3cc4916f9ae62 | |
| parent | c53635956445468f54fb61b6d4ef5230e49c817e (diff) | |
| parent | b2fb291cb9de8c1d7f0b364942d4394eb78b5111 (diff) | |
| download | pyramid-11fd4448711e3fc2f9c6a7f5971110a885a8ee1c.tar.gz pyramid-11fd4448711e3fc2f9c6a7f5971110a885a8ee1c.tar.bz2 pyramid-11fd4448711e3fc2f9c6a7f5971110a885a8ee1c.zip | |
Merge pull request #3168 from jinty/typo
typo in docstring
| -rw-r--r-- | pyramid/testing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/testing.py b/pyramid/testing.py index 69b30e83f..7ff4c2f73 100644 --- a/pyramid/testing.py +++ b/pyramid/testing.py @@ -626,7 +626,7 @@ def testConfig(registry=None, with testConfig() as config: config.add_route('bar', '/bar/{id}') req = DummyRequest() - resp = myview(req), + resp = myview(req) """ config = setUp(registry=registry, request=request, |
