diff --git a/atrcopy/parsers.py b/atrcopy/parsers.py index 80b210e..0715853 100644 --- a/atrcopy/parsers.py +++ b/atrcopy/parsers.py @@ -49,9 +49,7 @@ class SegmentParser(object): json. Once a version gets out in the wild and additional attributes are added to a segment, a default value should be applied here. """ - print "UPDATING!!!!", state self.__dict__.update(state) - print self.segments def parse(self): r = self.segment_data diff --git a/atrcopy/segments.py b/atrcopy/segments.py index a78ad68..f9a765d 100644 --- a/atrcopy/segments.py +++ b/atrcopy/segments.py @@ -293,7 +293,6 @@ class SegmentData(object): d = self.data.base.copy() s = self.style.base.copy() start, end = self.byte_bounds_offset() - print "copy: start, end =", start, end copy = SegmentData(d[start:end], s[start:end]) return copy