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. # limitations under the License.
from asyncio_mongo._bson import SON from asyncio_mongo._bson import SON
from asyncio_mongo._pymongo import helpers
from asyncio_mongo.collection import Collection from asyncio_mongo.collection import Collection
from asyncio import coroutine from asyncio import coroutine
from asyncio_mongo.exceptions import ErrorReply from asyncio_mongo.exceptions import ErrorReply
from pymongo import auth from asyncio_mongo._pymongo import auth
class Database(object): class Database(object):

View File

@@ -93,7 +93,7 @@ else:
setup( setup(
name="asyncio_mongo", name="asyncio_mongo",
version="0.2.2", version="0.2.3",
description="Asynchronous Python 3.3+ driver for MongoDB <http://www.mongodb.org>", description="Asynchronous Python 3.3+ driver for MongoDB <http://www.mongodb.org>",
author="Alexandre Fiori, Don Brown", author="Alexandre Fiori, Don Brown",
author_email="mrdon@twdata.org", author_email="mrdon@twdata.org",