From 93200b675f8324a5de2da74a01f26203aac51be0 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Fri, 10 Feb 2012 18:13:11 -0800 Subject: [PATCH] Updated to show which file we joined with. --- devstack/components/glance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devstack/components/glance.py b/devstack/components/glance.py index f07874f8..7ac256b4 100644 --- a/devstack/components/glance.py +++ b/devstack/components/glance.py @@ -126,12 +126,12 @@ class GlanceInstaller(comp.PythonInstallComponent): if config_fn == API_CONF: (fn, top) = utils.load_template(self.component_name, API_CONF) (_, bottom) = self._get_source_config(API_PASTE_CONF) - combined = [top, "### Joined here on %s" % (date.rcf8222date()), bottom] + combined = [top, "### Joined here on %s with file %s" % (date.rcf8222date(), API_PASTE_CONF), bottom] return (fn, utils.joinlinesep(*combined)) if config_fn == REG_CONF: (fn, top) = utils.load_template(self.component_name, REG_CONF) (_, bottom) = self._get_source_config(REG_PASTE_CONF) - combined = [top, "### Joined here on %s" % (date.rcf8222date()), bottom] + combined = [top, "### Joined here on %s with file %s" % (date.rcf8222date(), REG_PASTE_CONF), bottom] return (fn, utils.joinlinesep(*combined)) return comp.PythonInstallComponent._get_source_config(self, config_fn)