Fix for https://github.com/bazelbuild/tulsi/commit/ebf3108408ac1a9663340ffc71db81cac1ac90a3 which davg pointed out was really, really bad.

DELTA=1 (0 added, 0 deleted, 1 changed)
DELTA_BY_EXTENSION=py=1
PiperOrigin-RevId: 203027073
diff --git a/src/TulsiGenerator/Scripts/bazel_build.py b/src/TulsiGenerator/Scripts/bazel_build.py
index 34c288f..c544bd7 100755
--- a/src/TulsiGenerator/Scripts/bazel_build.py
+++ b/src/TulsiGenerator/Scripts/bazel_build.py
@@ -684,7 +684,7 @@
     # Generated headers are installed on a thread since we are launching
     # a separate process to do so. This gives us clean timings.
     install_thread = threading.Thread(
-        target=self._StartInstallingGeneratedHeaders, args=(outputs,))
+        target=self._InstallGeneratedHeaders, args=(outputs,))
     install_thread.start()
     timer = Timer('Installing artifacts', 'installing_artifacts').Start()
     exit_code = self._InstallArtifact(outputs_data)