summaryrefslogtreecommitdiff
path: root/dateutil/relativedelta.py
diff options
context:
space:
mode:
Diffstat (limited to 'dateutil/relativedelta.py')
-rw-r--r--dateutil/relativedelta.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/dateutil/relativedelta.py b/dateutil/relativedelta.py
index 1f07d82..d0b599a 100644
--- a/dateutil/relativedelta.py
+++ b/dateutil/relativedelta.py
@@ -42,7 +42,7 @@ class weekday(object):
MO, TU, WE, TH, FR, SA, SU = weekdays = tuple([weekday(x) for x in range(7)])
-class relativedelta:
+class relativedelta(object):
"""
The relativedelta type is based on the specification of the excelent
work done by M.-A. Lemburg in his mx.DateTime extension. However,
@@ -305,7 +305,7 @@ Here is the behavior of operations with relativedelta:
hour=other.hour or self.hour,
minute=other.minute or self.minute,
second=other.second or self.second,
- microsecond=other.second or self.microsecond)
+ microsecond=other.microsecond or self.microsecond)
def __sub__(self, other):
if not isinstance(other, relativedelta):
@@ -325,7 +325,7 @@ Here is the behavior of operations with relativedelta:
hour=other.hour or self.hour,
minute=other.minute or self.minute,
second=other.second or self.second,
- microsecond=other.second or self.microsecond)
+ microsecond=other.microsecond or self.microsecond)
def __neg__(self):
return relativedelta(years=-self.years,