mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -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
|
||||
* usr/bin/byobu-config: LP: #1166058
|
||||
- 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
|
||||
|
||||
|
|
|
@ -29,11 +29,20 @@ import string
|
|||
import subprocess
|
||||
import gettext
|
||||
import glob
|
||||
|
||||
|
||||
def error(msg):
|
||||
print("ERROR: %s" % msg)
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
try:
|
||||
import snack
|
||||
from snack import *
|
||||
except:
|
||||
error("Could not import the python snack module")
|
||||
|
||||
|
||||
PKG = "byobu"
|
||||
HOME = os.getenv("HOME")
|
||||
USER = os.getenv("USER")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue