Show More
@@ -2078,7 +2078,11 b' class TestRunner(object):' | |||
|
2078 | 2078 | vlog("# Running", cmd) |
|
2079 | 2079 | if os.system(cmd) == 0: |
|
2080 | 2080 | if not self.options.verbose: |
|
2081 | os.remove(installerrs) | |
|
2081 | try: | |
|
2082 | os.remove(installerrs) | |
|
2083 | except OSError as e: | |
|
2084 | if e.errno != errno.ENOENT: | |
|
2085 | raise | |
|
2082 | 2086 | else: |
|
2083 | 2087 | f = open(installerrs, 'rb') |
|
2084 | 2088 | for line in f: |
General Comments 0
You need to be logged in to leave comments.
Login now