TrivialFix: Added missed value in string formatting

Change-Id: I530e85c3a66988b545403baec13c700c7517e645
This commit is contained in:
Sergey Nikitin 2016-06-10 12:56:47 +03:00
parent 994432929f
commit cc728ca86c

@ -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):