From 79396ee3075c6171735863138c0e6c6b66b28d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramiro=20G=C3=B3mez?= Date: Mon, 22 Sep 2014 18:36:30 +0200 Subject: [PATCH] Fixed small typo datatime -> datetime --- sqlalchemy_utils/types/arrow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlalchemy_utils/types/arrow.py b/sqlalchemy_utils/types/arrow.py index c3b17ba..070718b 100644 --- a/sqlalchemy_utils/types/arrow.py +++ b/sqlalchemy_utils/types/arrow.py @@ -16,7 +16,7 @@ from .scalar_coercible import ScalarCoercible class ArrowType(types.TypeDecorator, ScalarCoercible): """ ArrowType provides way of saving Arrow_ objects into database. It - automatically changes Arrow_ objects to datatime objects on the way in and + automatically changes Arrow_ objects to datetime objects on the way in and datetime objects back to Arrow_ objects on the way out (when querying database). ArrowType needs Arrow_ library installed.