summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/_pydevd_bundle/pydevd_custom_frames.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/helpers/pydev/_pydevd_bundle/pydevd_custom_frames.py')
-rw-r--r--python/helpers/pydev/_pydevd_bundle/pydevd_custom_frames.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/helpers/pydev/_pydevd_bundle/pydevd_custom_frames.py b/python/helpers/pydev/_pydevd_bundle/pydevd_custom_frames.py
index ef587989ec5f..47519f320497 100644
--- a/python/helpers/pydev/_pydevd_bundle/pydevd_custom_frames.py
+++ b/python/helpers/pydev/_pydevd_bundle/pydevd_custom_frames.py
@@ -63,7 +63,7 @@ class CustomFrame:
def add_custom_frame(frame, name, thread_id):
CustomFramesContainer.custom_frames_lock.acquire()
try:
- curr_thread_id = get_current_thread_id(threading.currentThread())
+ curr_thread_id = get_current_thread_id(threading.current_thread())
next_id = CustomFramesContainer._next_frame_id = CustomFramesContainer._next_frame_id + 1
# Note: the frame id kept contains an id and thread information on the thread where the frame was added