Add missing argument to get_tmux_output

Fixes #1097
This commit is contained in:
ZyX 2014-09-27 18:06:53 +04:00
parent a0a02bfb18
commit 34e3aed094

View File

@ -11,12 +11,12 @@ def attached_clients(pl, minimum=1):
The minimum number of attached clients that must be present for this The minimum number of attached clients that must be present for this
segment to be visible. segment to be visible.
''' '''
session_output = get_tmux_output('list-panes', '-F', '#{session_name}') session_output = get_tmux_output(pl, 'list-panes', '-F', '#{session_name}')
if not session_output: if not session_output:
return None return None
session_name = session_output.rstrip().split('\n')[0] session_name = session_output.rstrip().split('\n')[0]
attached_clients_output = get_tmux_output('list-clients', '-t', session_name) attached_clients_output = get_tmux_output(pl, 'list-clients', '-t', session_name)
attached_count = len(attached_clients_output.rstrip().split('\n')) attached_count = len(attached_clients_output.rstrip().split('\n'))
return None if attached_count < minimum else str(attached_count) return None if attached_count < minimum else str(attached_count)