From 355667dc2e4d7a13b237306cb3aaa354ceea7eb5 Mon Sep 17 00:00:00 2001 From: Dmitry Bogun Date: Thu, 29 Dec 2016 17:42:50 +0200 Subject: [PATCH] Restore missing argument in logging call Change-Id: Idb44fac8961a4bded4ced48d2a1052bacc8d8447 --- bareon/actions/copyimage.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bareon/actions/copyimage.py b/bareon/actions/copyimage.py index 1219bf3..6cfd3ff 100644 --- a/bareon/actions/copyimage.py +++ b/bareon/actions/copyimage.py @@ -75,7 +75,8 @@ class CopyImageAction(base.BaseAction): LOG.debug('Trying to check if path %s exists', check_path) if os.path.exists(check_path): LOG.debug('Path %s exists. Trying to sync all files ' - 'from there to %s', mount_map[fs_mount]) + 'from there to %s', + check_path, mount_map[fs_mount]) src_path = check_path + '/' utils.execute('rsync', '-avH', src_path, mount_map[fs_mount])