mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
Fix Python warning
fix_get_types.py:14: SyntaxWarning: invalid escape sequence '\('
This commit is contained in:
parent
63973005bc
commit
2bd6124737
1 changed files with 1 additions and 1 deletions
|
@ -11,5 +11,5 @@ args = parser.parse_args ()
|
|||
with open (args.input, 'r') as inp, open (args.output, 'w') as out:
|
||||
for l in inp.readlines ():
|
||||
l = re.sub ('_t_get_type', '_get_type', l)
|
||||
l = re.sub ('_T \(', ' (', l)
|
||||
l = re.sub (r'_T \(', ' (', l)
|
||||
out.write (l)
|
||||
|
|
Loading…
Add table
Reference in a new issue