Fix typo in log message

Fixed typo valude -> value in purge_deleted_rows() method of
cinder.db.sqlalchemy.api in log message.

Change-Id: Iebdb4790086bb1186051572a388c6ebba4101fbc
This commit is contained in:
ankitagrawal
2015-03-13 05:09:05 -07:00
parent ef6cacd3c1
commit 3e88fb1b20

View File

@@ -3544,7 +3544,7 @@ def purge_deleted_rows(context, age_in_days):
try:
age_in_days = int(age_in_days)
except ValueError:
msg = _LE('Invalid valude for age, %(age)s')
msg = _LE('Invalid value for age, %(age)s')
LOG.exception(msg, {'age': age_in_days})
raise exception.InvalidParameterValue(msg % {'age': age_in_days})
if age_in_days <= 0: