diff options
Diffstat (limited to 'Doc/includes/tzinfo-examples.py')
-rw-r--r-- | Doc/includes/tzinfo-examples.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/tzinfo-examples.py b/Doc/includes/tzinfo-examples.py index 5132429..3a8cf47 100644 --- a/Doc/includes/tzinfo-examples.py +++ b/Doc/includes/tzinfo-examples.py @@ -27,7 +27,7 @@ class FixedOffset(tzinfo): """Fixed offset in minutes east from UTC.""" def __init__(self, offset, name): - self.__offset = timedelta(minutes = offset) + self.__offset = timedelta(minutes=offset) self.__name = name def utcoffset(self, dt): |