Correct typo in debug message

The word 'access' is misspelt in a debug message. This change fixes
it.

Closes-Bug: #1585427
Change-Id: I1f68d3b267b7e62a5b1438ab551646ba5739c5f4
This commit is contained in:
gecong1973 2016-05-25 10:17:13 +08:00 committed by amrith
parent dd49dc6e2e
commit 0ada30c476
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class Manager(manager.Manager):
return service.MongoDBAdmin().get_user(username)
def grant_access(self, context, username, hostname, databases):
LOG.debug("Granting acccess.")
LOG.debug("Granting access.")
return service.MongoDBAdmin().grant_access(username, databases)
def revoke_access(self, context, username, hostname, database):