From c04ca08067e351a76c54973185ad4ca0cae8b1ae Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 6 Dec 2016 07:21:58 -0500 Subject: Oh 2.6, you get me every time --- tests/test_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_process.py') diff --git a/tests/test_process.py b/tests/test_process.py index 0aaedeb0..81cd5ade 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -1082,7 +1082,7 @@ def possible_pth_dirs(): def find_writable_pth_directory(): """Find a place to write a .pth file.""" for pth_dir in possible_pth_dirs(): # pragma: part covered - try_it = os.path.join(pth_dir, "touch_{}.it".format(WORKER)) + try_it = os.path.join(pth_dir, "touch_{0}.it".format(WORKER)) with open(try_it, "w") as f: try: f.write("foo") -- cgit v1.2.1