Skip to content

Commit 99eb667

Browse files
committed
Server.panes: Fix listing of panes
Would list only panes in attached session, rather than all in a server.
1 parent 74a4822 commit 99eb667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libtmux/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ def panes(self) -> QueryList[Pane]:
542542
Pane(server=self, **obj)
543543
for obj in fetch_objs(
544544
list_cmd="list-panes",
545-
list_extra_args=["-s"],
545+
list_extra_args=("-a",),
546546
server=self,
547547
)
548548
]

0 commit comments

Comments
 (0)