* usr/bin/byobu-config: LP: #1255484

- reload-required should always be in run-dir, not config-dir
This commit is contained in:
Dustin Kirkland 2013-11-29 09:33:01 -06:00
commit 6a978550ad
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -10,6 +10,8 @@ byobu (5.66) unreleased; urgency=low
used to enter scrollback mode used to enter scrollback mode
* usr/lib/byobu/memory: LP: #1255491 * usr/lib/byobu/memory: LP: #1255491
- fix the name of the __memory_detail() function - fix the name of the __memory_detail() function
* usr/bin/byobu-config: LP: #1255484
- reload-required should always be in run-dir, not config-dir
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 18 Nov 2013 12:31:12 -0600 -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 18 Nov 2013 12:31:12 -0600

View file

@ -60,7 +60,7 @@ if not os.path.exists(DOC):
DOC = BYOBU_CONFIG_DIR + "/" + DOC DOC = BYOBU_CONFIG_DIR + "/" + DOC
DEF_ESC = "A" DEF_ESC = "A"
RELOAD = "If you are using the default set of keybindings, press\n<F5> or <ctrl-a-R> to activate these changes.\n\nOtherwise, exit this session and start a new one." RELOAD = "If you are using the default set of keybindings, press\n<F5> or <ctrl-a-R> to activate these changes.\n\nOtherwise, exit this session and start a new one."
RELOAD_FLAG = "%s/reload-required" % (BYOBU_CONFIG_DIR) RELOAD_FLAG = "%s/reload-required" % (BYOBU_RUN_DIR)
ESC = '' ESC = ''
snack.hotkeys[ESC] = ord(ESC) snack.hotkeys[ESC] = ord(ESC)
snack.hotkeys[ord(ESC)] = ESC snack.hotkeys[ord(ESC)] = ESC