default GetLuciAuth to latest SHA1 version

BUG=chromium:871831
TEST=local unit test

default to latest SHA1 instead of latest to
fix old branches.

Change-Id: Ib14ec566181908a054c14f2d84b48ff5af0e76e6
(cherry picked from commit dd861a00fcd4134f9eecddf9607dd2af067113aa)
Reviewed-on: https://chromium-review.googlesource.com/1168218
Reviewed-by: Gregory Meinke <gmeinke@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
Commit-Queue: Gregory Meinke <gmeinke@chromium.org>
diff --git a/lib/auth.py b/lib/auth.py
index b8c62f6..fc36ccf 100644
--- a/lib/auth.py
+++ b/lib/auth.py
@@ -24,14 +24,18 @@
 class AccessTokenError(Exception):
   """Error accessing the token."""
 
-def GetAuthUtil(instance_id='latest'):
+# crbug:871831 default to last sha1 version.
+def GetAuthUtil(
+    instance_id='git_revision:fd059ace316e4dbcaa5afdcec9ed4a855c4f3c65'):
   """Returns a path to the authutil binary.
 
   This will download and install the authutil package if it is not already
   deployed.
 
   Args:
-    instance_id: The instance-id of the package to install. Defaults to 'latest'
+    instance_id: The instance-id of the package to install. Defaults to
+    'git_revision:fd059ace316e4dbcaa5afdcec9ed4a855c4f3c65' which is the last
+    SHA1 version.
 
   Returns:
     the path to the authutil binary.