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

- fix regression introduced by r2448
This commit is contained in:
Dustin Kirkland 2015-12-02 13:35:28 -06:00
commit 90055c3600
2 changed files with 9 additions and 1 deletions

2
debian/changelog vendored
View file

@ -33,6 +33,8 @@ byobu (5.100) unreleased; urgency=medium
via dbus
- fqdn namespace that service to us.kirkland.terminals.byobu
+ this is stupid, btw
* usr/lib/byobu/include/select-session.py:
- fix regression introduced by r2448
-- Dustin Kirkland <kirkland@ubuntu.com> Sat, 14 Nov 2015 16:59:57 -0600

View file

@ -20,11 +20,17 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from builtins import input
import os
import re
import sys
import subprocess
try:
# For Python3, try and import input from builtins
from builtins import input
except:
# But fall back to using the default input
True
PKG = "byobu"
SHELL = os.getenv("SHELL", "/bin/bash")