Allow node.py to run node scripts

If third_party/node/node.py is executed as a regular script,
it will consequently run the Node script with the node version
that is synced with gclient sync.

DISABLE_THIRD_PARTY_CHECK=Node Python fix
R=liviurau@chromium.org

Bug: 1074325
Change-Id: I738dc3de5dabdef349f90dfc972acd99f139c027
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2194873
Reviewed-by: Liviu Rau <liviurau@chromium.org>
Commit-Queue: Tim van der Lippe <tvanderlippe@chromium.org>
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 14baa01..943d813 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -176,7 +176,7 @@
         affected_files = _getAffectedFiles(input_api, default_linted_directories, ['D'], ['.js', '.ts'])
 
         # If we have not changed any lintable files, then we should bail out.
-        # Otherwise, `run_lint_check.py` will lint *all* files.
+        # Otherwise, `run_lint_check.js` will lint *all* files.
         if len(affected_files) is 0:
             results.append(output_api.PresubmitNotifyResult('No affected files for ESLint check'))
             return results