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
This commit is contained in:
uau 2006-07-25 07:08:34 +00:00
parent 0c184e89b0
commit 6e9fb4f351
1 changed files with 1 additions and 1 deletions

View File

@ -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: