Fix gerrit/gitiles typo in git_cl

This is a fix to 32978d969ce27fa9568b30f0cdb556036a645d1e,
which introduced a "Landed as <gerrit link>" feature to git-cl, but
which at the last minute introduced a typo causing the whole feature
to not actually work.

BUG=661187

Change-Id: Ifef3379a51f035973bc5f3842862528f90bfdf84
Reviewed-on: https://chromium-review.googlesource.com/419782
Reviewed-by: Stephen Martinis <martiniss@chromium.org>
Commit-Queue: Aaron Gable <agable@chromium.org>
diff --git a/git_cl.py b/git_cl.py
index 8a2a8a1..312fa32 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -2704,7 +2704,7 @@
     print('Issue %s has been submitted.' % self.GetIssueURL())
     links = self._GetChangeCommit().get('web_links', [])
     for link in links:
-      if link.get('name') == 'gerrit' and link.get('url'):
+      if link.get('name') == 'gitiles' and link.get('url'):
         print('Landed as %s' % link.get('url'))
         break
     return 0