diff options
| author | Chris McDonough <chrism@plope.com> | 2011-10-07 23:34:53 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-10-07 23:34:53 -0400 |
| commit | 339208eb2ccefde01535142e897bd31e2ff0c510 (patch) | |
| tree | 1426739a1b996797a02e436e6b01f947d2dcfdb9 | |
| parent | 442c1ed62057466a5a2d75321bd9541cd0403bf7 (diff) | |
| download | pyramid-339208eb2ccefde01535142e897bd31e2ff0c510.tar.gz pyramid-339208eb2ccefde01535142e897bd31e2ff0c510.tar.bz2 pyramid-339208eb2ccefde01535142e897bd31e2ff0c510.zip | |
fix on py32
| -rw-r--r-- | pyramid/tests/test_scripts/test_pserve.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/tests/test_scripts/test_pserve.py b/pyramid/tests/test_scripts/test_pserve.py index 7c2471692..d23c81f10 100644 --- a/pyramid/tests/test_scripts/test_pserve.py +++ b/pyramid/tests/test_scripts/test_pserve.py @@ -42,7 +42,7 @@ class TestPServeCommand(unittest.TestCase): def test_run_stop_daemon_invalid_pid_in_file(self): import tempfile tmp = tempfile.NamedTemporaryFile() - tmp.write('9999999') + tmp.write(b'9999999') tmp.flush() tmpname = tmp.name inst = self._makeOne('--stop-daemon', '--pid-file=%s' % tmpname) |
