From cc728ca86c89cdb74262d251c37be32c30c75848 Mon Sep 17 00:00:00 2001 From: Sergey Nikitin Date: Fri, 10 Jun 2016 12:56:47 +0300 Subject: [PATCH] TrivialFix: Added missed value in string formatting Change-Id: I530e85c3a66988b545403baec13c700c7517e645 --- novaclient/tests/functional/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/novaclient/tests/functional/base.py b/novaclient/tests/functional/base.py index 300179f3c..095d5ce70 100644 --- a/novaclient/tests/functional/base.py +++ b/novaclient/tests/functional/base.py @@ -342,7 +342,7 @@ class ClientTestBase(testtools.TestCase): # the value now using the column index. return line.split("|")[1:-1][column_index].strip() - raise ValueError("Unable to find value for column '%s'.") + raise ValueError("Unable to find value for column '%s'." % column) def _create_server(self, name=None, with_network=True, add_cleanup=True, **kwargs):