From 29fd381689826de065884d1cd7e16ab50557b50e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 15 Mar 2019 01:29:49 +0100 Subject: [PATCH] Datetime fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e3b58f..0cd9443 100644 --- a/README.md +++ b/README.md @@ -523,7 +523,7 @@ import pytz ```python = pytz.timezone('/') # Use 'pytz.utc' for UTC. =
.astimezone() # Converts datetime to passed timezone. - = .replace(tzinfo=) # Changes timezone without conversion. + = .replace(tzinfo=) # Changes timezone without conversion. = .utcoffset() # Returns timezone's current offset from UTC. = .dst() # Returns daylight saving time offset. ```