From cebd4345494eb5507099770022b40575590215c0 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 8 Oct 2011 13:45:59 -0400 Subject: 79 chars --- pyramid/tests/test_scripts/test_pserve.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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__ -- cgit v1.2.3