From c701321aa45fa86ab849d32e67c8649c97670317 Mon Sep 17 00:00:00 2001
From: Andreas Jaeger <aj@suse.com>
Date: Tue, 15 Mar 2016 08:31:11 +0100
Subject: [PATCH] Fix format in
 cinder/volume/drivers/netapp/dataontap/block_base.py

The format misses the conversion type. This break translation testing in
an interesting way, the translated string is not accepted as valid.

Change-Id: Ieb63e9efcc3ec38be115e1e9b32e6ef55d777ba6
---
 cinder/volume/drivers/netapp/dataontap/block_base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cinder/volume/drivers/netapp/dataontap/block_base.py b/cinder/volume/drivers/netapp/dataontap/block_base.py
index 5028d497f..d6f9ee433 100644
--- a/cinder/volume/drivers/netapp/dataontap/block_base.py
+++ b/cinder/volume/drivers/netapp/dataontap/block_base.py
@@ -1013,7 +1013,7 @@ class NetAppBlockStorageLibrary(object):
             except Exception:
                 volumes_model_update.append(
                     {'id': volume['id'], 'status': 'error_deleting'})
-                LOG.exception(_LE("Volume %(vol) in the consistency group "
+                LOG.exception(_LE("Volume %(vol)s in the consistency group "
                                   "could not be deleted."), {'vol': volume})
         return model_update, volumes_model_update
 
-- 
2.45.2