mirror of https://github.com/mpv-player/mpv
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:
parent
0c184e89b0
commit
6e9fb4f351
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue