Fix mongo authentication, version 0.2.1

This commit is contained in:
Don Brown
2014-02-18 00:10:29 -07:00
parent 8ad8e38553
commit b9dcf43cf4
2 changed files with 3 additions and 3 deletions

View File

@@ -94,8 +94,8 @@ class Database(object):
raise TypeError("password must be an instance of str")
# First get the nonce
result = yield self["$cmd"].find_one({"getnonce": 1})
return (yield self.authenticate_with_nonce(result, name, password))
result = yield from self["$cmd"].find_one({"getnonce": 1})
return (yield from self.authenticate_with_nonce(result, name, password))
@coroutine
def authenticate_with_nonce(self, result, name, password):