* usr/lib/byobu/include/select-session.py:

- Force UTF-8 when attaching in `select-session.py`
  - https://github.com/dustinkirkland/byobu/pull/35
This commit is contained in:
Dustin Kirkland 2019-11-29 15:19:42 -06:00
commit b2e3ff4463
2 changed files with 7 additions and 2 deletions

7
debian/changelog vendored
View file

@ -5,7 +5,12 @@ byobu (5.130) unreleased; urgency=medium
- add Raspbian colors / logo
+ https://github.com/dustinkirkland/byobu/pull/34
-- Dustin Kirkland <kirkland@x250> Fri, 29 Nov 2019 15:14:50 -0600
[ bryango ]
* usr/lib/byobu/include/select-session.py:
- Force UTF-8 when attaching in `select-session.py`
- https://github.com/dustinkirkland/byobu/pull/35
-- Dustin Kirkland <kirkland@x250> Fri, 29 Nov 2019 15:18:53 -0600
byobu (5.129-0ubuntu1) eoan; urgency=medium

View file

@ -132,7 +132,7 @@ def attach_session(session):
cull_zombies(session_name)
# must use the binary, not the wrapper!
if backend == "tmux":
os.execvp("tmux", ["tmux", "attach", "-t", session_name])
os.execvp("tmux", ["tmux", "-u", "attach", "-t", session_name])
else:
os.execvp("screen", ["screen", "-AOxRR", session_name])