mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 06:23:19 -07:00
parent
a3b575654c
commit
f6c72afa78
2 changed files with 11 additions and 0 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -10,6 +10,8 @@ byobu (5.40) unreleased; urgency=low
|
||||||
- rephrase window rename help text
|
- rephrase window rename help text
|
||||||
* usr/bin/byobu-config: LP: #1166058
|
* usr/bin/byobu-config: LP: #1166058
|
||||||
- handle non-existant keybindings file
|
- handle non-existant keybindings file
|
||||||
|
* usr/bin/byobu-config: LP: #1125469
|
||||||
|
- define error() function
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 07 May 2013 22:01:40 -0500
|
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 07 May 2013 22:01:40 -0500
|
||||||
|
|
||||||
|
|
|
@ -29,11 +29,20 @@ import string
|
||||||
import subprocess
|
import subprocess
|
||||||
import gettext
|
import gettext
|
||||||
import glob
|
import glob
|
||||||
|
|
||||||
|
|
||||||
|
def error(msg):
|
||||||
|
print("ERROR: %s" % msg)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import snack
|
import snack
|
||||||
from snack import *
|
from snack import *
|
||||||
except:
|
except:
|
||||||
error("Could not import the python snack module")
|
error("Could not import the python snack module")
|
||||||
|
|
||||||
|
|
||||||
PKG = "byobu"
|
PKG = "byobu"
|
||||||
HOME = os.getenv("HOME")
|
HOME = os.getenv("HOME")
|
||||||
USER = os.getenv("USER")
|
USER = os.getenv("USER")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue