소스 검색

Changing python regex method from match to search due to variable content structure

Eric Wolinetz 7 년 전
부모
커밋
237b1e3736
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      roles/openshift_logging/library/logging_patch.py

+ 1 - 1
roles/openshift_logging/library/logging_patch.py

@@ -77,7 +77,7 @@ def account_for_whitelist(current_file_contents, new_file_contents, white_list=N
 
     for line in white_list:
         regex_line = r".*" + re.escape(line) + r":.*\n"
-        new_file_line = re.match(regex_line, new_file_contents)
+        new_file_line = re.search(regex_line, new_file_contents)
         if new_file_line:
             current_file_contents = re.sub(regex_line, new_file_line.group(0), current_file_contents)
         else: