Skip to content

Commit

Permalink
Simplify a regexp.
Browse files Browse the repository at this point in the history
  • Loading branch information
eladkehat committed May 1, 2019
1 parent cc238b8 commit a1421ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/dumppdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from pdfminer.pdfpage import PDFPage
from pdfminer.utils import isnumber

ESC_PAT = re.compile(r'[\000-\037&<>()"\042\047\134\177-\377]')
ESC_PAT = re.compile(r'[\000-\037&<>()"\047\134\177-\377]')


def e(s):
Expand Down

0 comments on commit a1421ba

Please sign in to comment.