# HG changeset patch # User cpt # Date 1726804936 0 # Node ID da1be011475523a6050e4ce21c87a27e5cc8ee19 # Parent 76a3830e9cb1fa5b6eab0cf146a9cc0f96ad83e8 planemo upload commit 471832a126aa25d903becae9a074a6b7b1ff7092-dirty diff -r 76a3830e9cb1 -r da1be0114755 cpt.py --- a/cpt.py Fri Sep 20 03:52:29 2024 +0000 +++ b/cpt.py Fri Sep 20 04:02:16 2024 +0000 @@ -148,7 +148,7 @@ if index % 3 != 0: continue n = s[start:index] - for (offset, n, t) in self.start_chop_and_trans(n): + for offset, n, t in self.start_chop_and_trans(n): if n and len(t) >= self.min_len: yield start + offset, n, t start = index @@ -295,7 +295,7 @@ if index % 3 != 0: continue n = s[start:index] - for (offset, n, t) in self.start_chop_and_trans(n): + for offset, n, t in self.start_chop_and_trans(n): if n and len(t) >= self.min_len: yield start + offset, n, t start = index