diff TOOLS/mphelp_check.py @ 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 fe17e7634db1
children 8715803f09e8
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: