From 4f9a8fde8a5f095365c5c6c3706f6e7114e567fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com> Date: Fri, 15 Mar 2019 03:21:04 +0100 Subject: [PATCH] Datetime fix --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 993ea52..0c11ffc 100644 --- a/README.md +++ b/README.md @@ -508,8 +508,8 @@ import pytz ```python <str> = <D/T/DT>.isoformat() # ISO string representation. <str> = <D/T/DT>.strftime('<format>') # Custom string representation. -<int> = <D/DT>.toordinal() # Days since Christ, ignoring time and timezone. -<float> = <DT>.timestamp() # Seconds since Epoch in local time or tz if set. +<int> = <D/DT>.toordinal() # Days since Christ, ignoring time and tz. +<float> = <DT>.timestamp() # Seconds since Epoch in local time or tz. ``` ### Format