Use git pull --no-edit in run_on_as_app.py

Change-Id: Iba96fba5f702ef716d2262a46960626e5445b0c4
diff --git a/tools/run_on_as_app.py b/tools/run_on_as_app.py
index 56ea215..02f1682 100755
--- a/tools/run_on_as_app.py
+++ b/tools/run_on_as_app.py
@@ -117,7 +117,8 @@
   return subprocess.check_output(['git', 'clone', git_url]).strip()
 
 def GitPull():
-  return subprocess.call(['git', 'pull']) == 0
+  # Use --no-edit to accept the auto-generated merge message, if any.
+  return subprocess.call(['git', 'pull', '--no-edit']) == 0
 
 def GitCheckout(file):
   return subprocess.check_output(['git', 'checkout', file]).strip()