Show More
@@ -2078,7 +2078,11 b' class TestRunner(object):' | |||||
2078 | vlog("# Running", cmd) |
|
2078 | vlog("# Running", cmd) | |
2079 | if os.system(cmd) == 0: |
|
2079 | if os.system(cmd) == 0: | |
2080 | if not self.options.verbose: |
|
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 | else: |
|
2086 | else: | |
2083 | f = open(installerrs, 'rb') |
|
2087 | f = open(installerrs, 'rb') | |
2084 | for line in f: |
|
2088 | for line in f: |
General Comments 0
You need to be logged in to leave comments.
Login now