# HG changeset patch # User Simon Heimberg # Date 1362091551 -3600 # Node ID a911e5dc2b0052466fbfc89b127c1f8e0ef65b96 # Parent 17f6644a2fbca63c37880ffbd8bc43e05a14837f check-code: extract windows glob warning message it will be used often diff -r 17f6644a2fbc -r a911e5dc2b00 contrib/check-code.py --- a/contrib/check-code.py Tue Mar 26 16:27:51 2013 -0700 +++ b/contrib/check-code.py Thu Feb 28 23:45:51 2013 +0100 @@ -89,6 +89,7 @@ (r"<<(\S+)((.|\n)*?\n\1)", rephere), ] +winglobmsg = "use (glob) to match Windows paths too" uprefix = r"^ \$ " utestpats = [ [ @@ -101,8 +102,7 @@ "explicit exit code checks unnecessary"), (uprefix + r'set -e', "don't use set -e"), (uprefix + r'\s', "don't indent commands, use > for continued lines"), - (r'^ saved backup bundle to \$TESTTMP.*\.hg$', - "use (glob) to match Windows paths too"), + (r'^ saved backup bundle to \$TESTTMP.*\.hg$', winglobmsg), ], # warnings [