From 6a978550add054663ad3369f104c375f3eed074f Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Fri, 29 Nov 2013 09:33:01 -0600 Subject: [PATCH] * usr/bin/byobu-config: LP: #1255484 - reload-required should always be in run-dir, not config-dir --- debian/changelog | 2 ++ usr/bin/byobu-config | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 3187a941..59bfbe25 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,8 @@ byobu (5.66) unreleased; urgency=low used to enter scrollback mode * usr/lib/byobu/memory: LP: #1255491 - 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 Mon, 18 Nov 2013 12:31:12 -0600 diff --git a/usr/bin/byobu-config b/usr/bin/byobu-config index 6a3b8cc9..2da0b277 100755 --- a/usr/bin/byobu-config +++ b/usr/bin/byobu-config @@ -60,7 +60,7 @@ if not os.path.exists(DOC): DOC = BYOBU_CONFIG_DIR + "/" + DOC DEF_ESC = "A" RELOAD = "If you are using the default set of keybindings, press\n or 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 = '' snack.hotkeys[ESC] = ord(ESC) snack.hotkeys[ord(ESC)] = ESC