summaryrefslogtreecommitdiffstats
path: root/contrib/python/python-dateutil/py3/dateutil/rrule.py
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/python-dateutil/py3/dateutil/rrule.py')
-rw-r--r--contrib/python/python-dateutil/py3/dateutil/rrule.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/python-dateutil/py3/dateutil/rrule.py b/contrib/python/python-dateutil/py3/dateutil/rrule.py
index b3203393c61..571a0d2bc88 100644
--- a/contrib/python/python-dateutil/py3/dateutil/rrule.py
+++ b/contrib/python/python-dateutil/py3/dateutil/rrule.py
@@ -182,7 +182,7 @@ class rrulebase(object):
# __len__() introduces a large performance penalty.
def count(self):
""" Returns the number of recurrences in this set. It will have go
- trough the whole recurrence, if this hasn't been done before. """
+ through the whole recurrence, if this hasn't been done before. """
if self._len is None:
for x in self:
pass