summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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__