Skip to content

Commit 0935135

Browse files
authored
fix(temp_window): findWhere -> find_where (#391)
2 parents 8be1a45 + 44e11d7 commit 0935135

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGES

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ $ pip install --user --upgrade --pre libtmux
1212

1313
- _Insert changes/features/fixes for next release here_
1414

15+
### Development
16+
17+
- Fix incorrect function name `findWhere()` ({issue}`391`)
18+
1519
## libtmux 0.12.0 (2022-07-13)
1620

1721
## Compatibility

libtmux/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def temp_window(session, *args, **kwargs):
265265
try:
266266
yield session
267267
finally:
268-
if session.findWhere(window_id=window_id):
268+
if session.find_where(window_id=window_id):
269269
window.kill_window()
270270
return
271271

0 commit comments

Comments
 (0)