cit.py fix

gclient should be checking out origin/deployed, not deployed.
--revision deployed is local, origin/deployed actually causes it to fetch

BUG=

Review URL: https://codereview.chromium.org/1236133005

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@296055 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/cit.py b/cit.py
index 8e1ae55..5210cee 100755
--- a/cit.py
+++ b/cit.py
@@ -61,7 +61,7 @@
         cwd=TARGET_DIR,
         stdout=subprocess.PIPE)
   subprocess.check_call(
-      [sys.executable, GCLIENT, 'sync', '--revision', 'deployed'],
+      [sys.executable, GCLIENT, 'sync', '--revision', 'origin/deployed'],
       cwd=TARGET_DIR,
       stdout=subprocess.PIPE)