mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 22:13:19 -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
|
via dbus
|
||||||
- fqdn namespace that service to us.kirkland.terminals.byobu
|
- fqdn namespace that service to us.kirkland.terminals.byobu
|
||||||
+ this is stupid, btw
|
+ 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
|
-- 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/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
from builtins import input
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
import subprocess
|
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"
|
PKG = "byobu"
|
||||||
SHELL = os.getenv("SHELL", "/bin/bash")
|
SHELL = os.getenv("SHELL", "/bin/bash")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue