fix zfb emoji 2
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -143,7 +143,7 @@ class PDFHandler: | ... | @@ -143,7 +143,7 @@ class PDFHandler: |
143 | # 支付宝 交易流水证明 '46428471991912802930901 2022-01-22' 切分日期 | 143 | # 支付宝 交易流水证明 '46428471991912802930901 2022-01-22' 切分日期 |
144 | if self.title_idx in {6, 7} and self.date_pattern.match(text): | 144 | if self.title_idx in {6, 7} and self.date_pattern.match(text): |
145 | try: | 145 | try: |
146 | split_x = x0 + ((x1 - x0) * (10 / len(text))) | 146 | split_x = x1 - ((x1 - x0) * (10 / len(text))) |
147 | 147 | ||
148 | date_str = text[-10:] | 148 | date_str = text[-10:] |
149 | other_str = text[:-10] | 149 | other_str = text[:-10] | ... | ... |
-
Please register or sign in to post a comment