summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-25 07:08:34 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-25 07:08:34 +0000
commit6e9fb4f35118abb02e9e7da1c299f2cf41170bbb (patch)
tree811a4b02e55e00a668261782cbca7faae72615bd /TOOLS
parent0c184e89b039f278ff98a49761d7dea879b7a2a7 (diff)
downloadmpv-6e9fb4f35118abb02e9e7da1c299f2cf41170bbb.tar.bz2
mpv-6e9fb4f35118abb02e9e7da1c299f2cf41170bbb.tar.xz
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
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/mphelp_check.py2
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: