Mitch Garnaat

Fixing a LOG call

...@@ -181,7 +181,7 @@ class Function(object): ...@@ -181,7 +181,7 @@ class Function(object):
181 config_path = os.path.join(self.path, config_name) 181 config_path = os.path.join(self.path, config_name)
182 if os.path.exists(config_path): 182 if os.path.exists(config_path):
183 dest_path = os.path.join(self.path, 'config.json') 183 dest_path = os.path.join(self.path, 'config.json')
184 - LOG.info('copy {} to {}'.format(config_path, dest_path)) 184 + LOG.info('copy %s to %s', config_path, dest_path)
185 shutil.copyfile(config_path, dest_path) 185 shutil.copyfile(config_path, dest_path)
186 186
187 def create(self): 187 def create(self):
......