summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-10-08 13:45:59 -0400
committerChris McDonough <chrism@plope.com>2011-10-08 13:45:59 -0400
commitcebd4345494eb5507099770022b40575590215c0 (patch)
tree338e595449c42724a50f3c63103039856b3af1e7
parent04a0cbb3ef5a16f5a032ea5de72f5ddaf63ada91 (diff)
downloadpyramid-cebd4345494eb5507099770022b40575590215c0.tar.gz
pyramid-cebd4345494eb5507099770022b40575590215c0.tar.bz2
pyramid-cebd4345494eb5507099770022b40575590215c0.zip
79 chars
-rw-r--r--pyramid/tests/test_scripts/test_pserve.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyramid/tests/test_scripts/test_pserve.py b/pyramid/tests/test_scripts/test_pserve.py
index 1f6175bb9..b181a7af2 100644
--- a/pyramid/tests/test_scripts/test_pserve.py
+++ b/pyramid/tests/test_scripts/test_pserve.py
@@ -30,7 +30,8 @@ class TestPServeCommand(unittest.TestCase):
path = os.path.join(os.path.dirname(__file__), 'wontexist.pid')
inst = self._makeOne('--stop-daemon', '--pid-file=%s' % path)
inst.run()
- self.assertEqual(self.out_.getvalue(),'No PID file exists in %s' % path)
+ self.assertEqual(self.out_.getvalue(),'No PID file exists in %s' %
+ path)
def test_run_stop_daemon_bad_pid_file(self):
path = __file__