From e22360767fe447a4785393b875f18c6da4c18e2a Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Wed, 19 Jun 2019 09:09:00 +1000 Subject: Revert "Fix datetime namespace typo" This reverts commit 953cab62aab68c5f1e3aafda3d8b37ae9c027b73. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 724d538..7955ecd 100644 --- a/README.md +++ b/README.md @@ -322,7 +322,7 @@ validator: ```pycon >>> schema = Schema(Date()) >>> schema('2013-03-03') -datetime(2013, 3, 3, 0, 0) +datetime.datetime(2013, 3, 3, 0, 0) >>> try: ... schema('2013-03') ... raise AssertionError('MultipleInvalid not raised') -- cgit v1.2.1