Fix PRESUBMIT.py after disabling CQ.

The disabling of CQ in https://codereview.webrtc.org/1177243003/
broke PRESUBMIT.py since it's trying to read cq.cfg.

BUG=501332
TBR=phoglund@webrtc.org

Review URL: https://codereview.webrtc.org/1192673003.

Cr-Commit-Position: refs/heads/master@{#9462}
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index c429009..6925c7e 100755
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -338,7 +338,7 @@
 # pylint: disable=W0613
 def GetPreferredTryMasters(project, change):
   cq_config_path = os.path.join(
-      change.RepositoryRoot(), 'infra', 'config', 'cq.cfg')
+      change.RepositoryRoot(), 'infra', 'config', 'cq_disabled.cfg')
   # commit_queue.py below is a script in depot_tools directory, which has a
   # 'builders' command to retrieve a list of CQ builders from the CQ config.
   is_win = platform.system() == 'Windows'