From 5fde13fa0610fb38f651ef96e09dba7e47dc934c Mon Sep 17 00:00:00 2001 From: Yuwei Ba Date: Thu, 13 Apr 2017 16:20:41 +0800 Subject: [PATCH] fix wrong indenting --- pythonFiles/PythonTools/ptvsd/visualstudio_py_debugger.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonFiles/PythonTools/ptvsd/visualstudio_py_debugger.py b/pythonFiles/PythonTools/ptvsd/visualstudio_py_debugger.py index 4a64f4dd2dc3..78066291b04c 100644 --- a/pythonFiles/PythonTools/ptvsd/visualstudio_py_debugger.py +++ b/pythonFiles/PythonTools/ptvsd/visualstudio_py_debugger.py @@ -2128,7 +2128,7 @@ def report_exception(frame, exc_info, tid, break_type): 'message': data['message'], } - with _SendLockCtx: + with _SendLockCtx: if RICH_EXCEPTIONS: write_bytes(conn, EXC2) write_int(conn, tid) @@ -2749,4 +2749,4 @@ def _get_template_line(frame): return _offset_to_line_number(_read_file(file_name), source[1][0]) except: return None -## End modification by Don Jayamanne \ No newline at end of file +## End modification by Don Jayamanne