mirror of
https://github.com/kennethreitz/maya.git
synced 2026-06-05 23:00:18 +00:00
fix the bug
This commit is contained in:
@@ -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."""
|
||||
|
||||
Reference in New Issue
Block a user