##// END OF EJS Templates
check-commit: use raw string for regular expression...
Gregory Szorc -
r41680:45a4789d default
parent child Browse files
Show More
@@ -47,7 +47,7 b' errors = ['
47 "adds a function with foo_bar naming"),
47 "adds a function with foo_bar naming"),
48 ]
48 ]
49
49
50 word = re.compile('\S')
50 word = re.compile(r'\S')
51 def nonempty(first, second):
51 def nonempty(first, second):
52 if word.search(first):
52 if word.search(first):
53 return first
53 return first
General Comments 0
You need to be logged in to leave comments. Login now