Merge "Fix typo in exception message"

This commit is contained in:
Jenkins
2013-08-15 20:35:28 +00:00
committed by Gerrit Code Review
+1 -1
View File
@@ -273,7 +273,7 @@ def check_shadow_table(migrate_engine, table_name):
for name, column in shadow_columns.iteritems():
if name not in columns:
raise exception.NovaException(
_("Extra column %(table)%.%(column)s in shadow table")
_("Extra column %(table)s.%(column)s in shadow table")
% {'column': name, 'table': shadow_table.name})
return True