More string fixes

This commit is contained in:
Joshua Harlow 2012-03-27 18:15:03 -07:00
parent 41009bd225
commit d6112b0634
2 changed files with 2 additions and 2 deletions
devstack/components

@ -112,7 +112,7 @@ class KeystoneInstaller(comp.PythonInstallComponent):
return set(['swift', 'quantum'])
def _sync_db(self):
LOG.info("Syncing keystone to database named %s.", DB_NAME)
LOG.info("Syncing keystone to database named %r", DB_NAME)
mp = self._get_param_map(None)
cmds = [{'cmd': SYNC_DB_CMD}]
utils.execute_template(*cmds, cwd=self.bin_dir, params=mp)

@ -288,7 +288,7 @@ class NovaInstaller(NovaMixin, comp.PythonInstallComponent):
self.tracewriter.file_touched(tgt_fn)
def _sync_db(self):
LOG.info("Syncing the database with nova.")
LOG.info("Syncing nova to database named %r", DB_NAME)
mp = self._get_param_map(None)
utils.execute_template(*DB_SYNC_CMD, params=mp)