From 969869c53b055129b76310aba7f491238b71c6bb Mon Sep 17 00:00:00 2001 From: Desh Raj Date: Wed, 2 Jan 2019 04:22:58 +0100 Subject: [PATCH] [scripts] Further fix for Python 2/3 compatibility (#2957) --- egs/wsj/s5/steps/libs/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egs/wsj/s5/steps/libs/common.py b/egs/wsj/s5/steps/libs/common.py index 17b8ad89064..6bf0ea4932c 100644 --- a/egs/wsj/s5/steps/libs/common.py +++ b/egs/wsj/s5/steps/libs/common.py @@ -20,7 +20,7 @@ import threading try: - import _thread as thread_module + import thread as thread_module except: import _thread as thread_module