Fix minor spelling error in debug log

Minor correction of "calculated" to "calculate".
Also removed extra brackets.

Change-Id: Ic330003ec49c5ef885a97b3c5af28b03dd808833
This commit is contained in:
John Davidge 2016-06-20 11:04:17 +01:00
parent dab8083542
commit 3690559d02
1 changed files with 2 additions and 2 deletions

View File

@ -186,8 +186,8 @@ class DbQuotaDriver(object):
current_limits.items() if limit < 0])
# Do not even bother counting resources and calculating headroom
# for resources with unlimited quota
LOG.debug(("Resources %s have unlimited quota limit. It is not "
"required to calculated headroom "),
LOG.debug("Resources %s have unlimited quota limit. It is not "
"required to calculate headroom ",
",".join(unlimited_resources))
requested_resources = (set(requested_resources) -
unlimited_resources)