diff options
author | uau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-07-25 07:08:34 +0000 |
---|---|---|
committer | uau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-07-25 07:08:34 +0000 |
commit | 6e9fb4f35118abb02e9e7da1c299f2cf41170bbb (patch) | |
tree | 811a4b02e55e00a668261782cbca7faae72615bd | |
parent | 0c184e89b039f278ff98a49761d7dea879b7a2a7 (diff) |
Regular expression for conversions had 'P' instead of 'p', fixed
to recognize %p.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19182 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | TOOLS/mphelp_check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/mphelp_check.py b/TOOLS/mphelp_check.py index 00e6bc6746..ca4bb02ccb 100755 --- a/TOOLS/mphelp_check.py +++ b/TOOLS/mphelp_check.py @@ -30,7 +30,7 @@ def parse(filename): 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: |