We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc235ba commit 9411cc1Copy full SHA for 9411cc1
libtmux/formats.py
@@ -6,12 +6,9 @@
6
For reference: https://github.com/tmux/tmux/blob/master/format.c
7
8
"""
9
+import os
10
-from __future__ import absolute_import, unicode_literals, with_statement
11
-
12
-from os import environ
13
14
-FORMAT_SEPERATOR = environ.get("TMUX_SEPERATOR", "|")
+FORMAT_SEPERATOR = os.environ.get("TMUX_SEPERATOR", "|")
15
16
SESSION_FORMATS = [
17
'session_name',
0 commit comments