From c7ad1b1ba070193214d972c63d73e1ea3862153d Mon Sep 17 00:00:00 2001 From: Don Brown Date: Tue, 18 Feb 2014 00:17:31 -0700 Subject: [PATCH] Fix wrong import --- asyncio_mongo/database.py | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/asyncio_mongo/database.py b/asyncio_mongo/database.py index c934528..70279eb 100644 --- a/asyncio_mongo/database.py +++ b/asyncio_mongo/database.py @@ -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): diff --git a/setup.py b/setup.py index 168675c..82b011f 100755 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ else: setup( name="asyncio_mongo", - version="0.2.2", + version="0.2.3", description="Asynchronous Python 3.3+ driver for MongoDB ", author="Alexandre Fiori, Don Brown", author_email="mrdon@twdata.org",