mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 22:34:23 -07:00
parent
93bc233e7b
commit
2289dd7db3
2 changed files with 6 additions and 1 deletions
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -1,9 +1,14 @@
|
||||||
byobu (5.6) unreleased; urgency=low
|
byobu (5.6) unreleased; urgency=low
|
||||||
|
|
||||||
|
[ Dustin Kirkland ]
|
||||||
* usr/lib/byobu/ip_address:
|
* usr/lib/byobu/ip_address:
|
||||||
- user@host and ipaddress need some separation, as they're hard to
|
- user@host and ipaddress need some separation, as they're hard to
|
||||||
differentiate when next to one another
|
differentiate when next to one another
|
||||||
|
|
||||||
|
[ Ryan Thompson ]
|
||||||
|
* usr/bin/byobu-select-session: LP: #919391
|
||||||
|
- read only integers
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 18 Jan 2012 19:57:15 -0600
|
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 18 Jan 2012 19:57:15 -0600
|
||||||
|
|
||||||
byobu (5.5-0ubuntu1) precise; urgency=low
|
byobu (5.5-0ubuntu1) precise; urgency=low
|
||||||
|
|
|
@ -96,7 +96,7 @@ if len(sessions) > 1:
|
||||||
sys.stdout.write(" %d. %s\n" % (i, s))
|
sys.stdout.write(" %d. %s\n" % (i, s))
|
||||||
i += 1
|
i += 1
|
||||||
try:
|
try:
|
||||||
choice = input("\nChoose 1-%d [1]: " % (i-1))
|
choice = int(raw_input("\nChoose 1-%d [1]: " % (i-1)))
|
||||||
if choice >= 1 and choice < i:
|
if choice >= 1 and choice < i:
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue