Skip to content

Commit ca53dde

Browse files
committed
Changed get seperator from env variable if available
1 parent 80e00c6 commit ca53dde

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libtmux/formats.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
"""
99

1010
from __future__ import absolute_import, unicode_literals, with_statement
11+
from os import environ
1112

12-
FORMAT_SEPERATOR = "|"
13+
FORMAT_SEPERATOR = environ.get("TMUX_SEPERATOR", "|")
1314

1415
SESSION_FORMATS = [
1516
'session_name',

0 commit comments

Comments
 (0)