fix the bug

This commit is contained in:
2017-05-23 11:36:39 -07:00
parent 36fc82211f
commit 343abed679
+1 -1
View File
@@ -314,7 +314,7 @@ class MayaInterval(object):
self.end = end
def __repr__(self):
return '<MayaInterval start={!r0} end={!r1}>'.format(self.start, self.end)
return '<MayaInterval start={0!r} end={1!r}>'.format(self.start, self.end)
def iso8601(self):
"""Returns an ISO 8601 representation of the MayaInterval."""