mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 14:03:18 -07:00
* usr/lib/byobu/include/select-session.py:
- fix regression introduced by r2448
This commit is contained in:
parent
dcebea76d2
commit
90055c3600
2 changed files with 9 additions and 1 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -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
|
||||
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue