hopefully fixes regex matching of stderr
This commit is contained in:
		@ -3,6 +3,7 @@
 | 
			
		||||
import argparse
 | 
			
		||||
import datetime
 | 
			
		||||
import os
 | 
			
		||||
import re
 | 
			
		||||
import shutil
 | 
			
		||||
import subprocess
 | 
			
		||||
import sys
 | 
			
		||||
@ -194,7 +195,7 @@ def main():
 | 
			
		||||
 | 
			
		||||
    if res in args.success_exit_codes:
 | 
			
		||||
        # Possible success, check error output
 | 
			
		||||
        re_checks = [re.compile(r) for r in args.ignore_error]
 | 
			
		||||
        re_checks = [re.compile(r) for r in args.err_re]
 | 
			
		||||
        ok = True
 | 
			
		||||
        with open(errfile, 'r') as f:
 | 
			
		||||
            for line in f:
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user