Skip to content

Commit b62ad3e

Browse files
asyncmind0tony
authored andcommitted
Changed get seperator from env variable if available
1 parent 074c6b5 commit b62ad3e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libtmux/formats.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99

1010
from __future__ import absolute_import, unicode_literals, with_statement
1111

12-
FORMAT_SEPERATOR = "|"
12+
from os import environ
13+
14+
FORMAT_SEPERATOR = environ.get("TMUX_SEPERATOR", "|")
1315

1416
SESSION_FORMATS = [
1517
'session_name',

0 commit comments

Comments
 (0)