From a5687145d7b6816713d40cce743d0fa3a49fcdc6 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Fri, 12 Feb 2016 11:04:29 +0100 Subject: fix class reference for iso8601.Utc in module docstring The reference to "iso8601.iso8601.Utc" is not wrong but not what Utc.__repr__() actually returns (since 29752e308996). In Python 3.2+ we use Python's UTC implementation (so we get a different __repr__() output) but I guess that won't confuse users too much. --- iso8601/iso8601.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iso8601/iso8601.py b/iso8601/iso8601.py index 3ab0095..0c149f6 100644 --- a/iso8601/iso8601.py +++ b/iso8601/iso8601.py @@ -3,7 +3,7 @@ Basic usage: >>> import iso8601 >>> iso8601.parse_date("2007-01-25T12:00:00Z") -datetime.datetime(2007, 1, 25, 12, 0, tzinfo=) +datetime.datetime(2007, 1, 25, 12, 0, tzinfo=) >>> """ -- cgit v1.2.1