Mercurial > mplayer.hg
changeset 19177:9065db6f98d9
Regular expression for conversions had 'P' instead of 'p', fixed
to recognize %p.
author | uau |
---|---|
date | Tue, 25 Jul 2006 07:08:34 +0000 |
parents | e81c7378d6f4 |
children | 1c76a192edfa |
files | TOOLS/mphelp_check.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/TOOLS/mphelp_check.py Mon Jul 24 16:47:54 2006 +0000 +++ b/TOOLS/mphelp_check.py Tue Jul 25 07:08:34 2006 +0000 @@ -30,7 +30,7 @@ return r def compare(base, other, show_missing=False): - r = re.compile('%[^diouxXeEfFgGaAcsPn%]*[diouxXeEfFgGaAcsPn%]') + r = re.compile('%[^diouxXeEfFgGaAcspn%]*[diouxXeEfFgGaAcspn%]') missing = [] for key in base: if key not in other: