Browse Source

Merge pull request #7481 from ewolinetz/patch_regex_fix2

Adding missed line change
Jeff Cantrill 7 years ago
parent
commit
c5b38b211a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_logging/library/logging_patch.py

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

@@ -81,7 +81,7 @@ def account_for_whitelist(current_file_contents, new_file_contents, white_list=N
         if new_file_line:
             current_file_contents = re.sub(regex_line, new_file_line.group(0), current_file_contents)
         else:
-            current_file_contents = re.sub(regex_line % line, "", current_file_contents)
+            current_file_contents = re.sub(regex_line, "", current_file_contents)
 
     return current_file_contents