Browse Source

Actually fixing the os.remove error...

Hamilton Turner 11 years ago
parent
commit
1300e18061
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolset/benchmark/benchmarker.py

+ 1 - 1
toolset/benchmark/benchmarker.py

@@ -548,7 +548,7 @@ class Benchmarker:
 
 
     try:
     try:
       os.remove('current_benchmark.txt')
       os.remove('current_benchmark.txt')
-    catch OSError:
+    except OSError:
       pass
       pass
     logging.debug("End __run_tests.")
     logging.debug("End __run_tests.")
     if error_happened:
     if error_happened: