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 1db7f3c commit f66c0f9Copy full SHA for f66c0f9
libtmux/formats.py
@@ -6,11 +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
-from os import environ
12
-
13
-FORMAT_SEPERATOR = environ.get("TMUX_SEPERATOR", "|")
+FORMAT_SEPERATOR = os.environ.get("TMUX_SEPERATOR", "|")
14
15
SESSION_FORMATS = [
16
'session_name',
0 commit comments