From ba21c51e976c0a3406b98526111cd65c8c974ed1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 3 May 2017 18:25:24 +0530 Subject: [PATCH] grr2 --- src/calibre/utils/test_lock.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/utils/test_lock.py b/src/calibre/utils/test_lock.py index 3b3775f483..a9eda35197 100644 --- a/src/calibre/utils/test_lock.py +++ b/src/calibre/utils/test_lock.py @@ -70,7 +70,7 @@ class IPCLockTest(unittest.TestCase): def test_exclusive_file_other_process(self): child = run_worker('calibre.utils.test_lock', 'other1') - print(1111111, child) + print(1111111, sys.executable, sys.setup_dir, child) while child.poll() is None: if os.path.exists('ready'): break @@ -85,6 +85,7 @@ class IPCLockTest(unittest.TestCase): def other1(): + print('in other') e = ExclusiveFile('test') with e: os.mkdir('ready')