Fix wrong import

This commit is contained in:
Don Brown
2014-02-18 00:17:31 -07:00
parent 6f5876469f
commit c7ad1b1ba0
2 changed files with 2 additions and 3 deletions

View File

@@ -14,11 +14,10 @@
# limitations under the License.
from asyncio_mongo._bson import SON
from asyncio_mongo._pymongo import helpers
from asyncio_mongo.collection import Collection
from asyncio import coroutine
from asyncio_mongo.exceptions import ErrorReply
from pymongo import auth
from asyncio_mongo._pymongo import auth
class Database(object):