From f3be0896caa95afd7517430224c97492ab46f52b Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 3 Aug 2022 20:21:00 -0500 Subject: [PATCH 1/2] fix(temp_window): findWhere -> find_where --- libtmux/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtmux/test.py b/libtmux/test.py index 03ade73e4..1dafba6af 100644 --- a/libtmux/test.py +++ b/libtmux/test.py @@ -265,7 +265,7 @@ def temp_window(session, *args, **kwargs): try: yield session finally: - if session.findWhere(window_id=window_id): + if session.find_where(window_id=window_id): window.kill_window() return From 44e11d7740c1f52cb074b5bd25979f492f5becb1 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Wed, 3 Aug 2022 20:23:44 -0500 Subject: [PATCH 2/2] docs(CHANGES): Note function name fix --- CHANGES | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index d56a27a41..d6e1c30f0 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,10 @@ $ pip install --user --upgrade --pre libtmux - _Insert changes/features/fixes for next release here_ +### Development + +- Fix incorrect function name `findWhere()` ({issue}`391`) + ## libtmux 0.12.0 (2022-07-13) ## Compatibility