From 489de09fbf59640c945527ab548cda945daeaa31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 15 Mar 2019 03:10:03 +0100 Subject: [PATCH] Datetime fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6aa0595..5d10cd9 100644 --- a/README.md +++ b/README.md @@ -488,7 +488,7 @@ import pytz ```python = pytz.utc # UTC timezone. = pytz.timezone('/') # Timezone from 'Continent/City' string. - =
.astimezone() # Datetime converted to passed timezone. + =
.astimezone() # Datetime, converted to passed timezone. = .replace(tzinfo=) # Unconverted object with new timezone. ```