Fix the noupdate XML.

BUG=n0ne
TEST=ran dev server, update_engine_client -check_for_update

Change-Id: If7518b2d59fe1bfdb99d40c07d3aef5c00cbe7cd

Review URL: http://codereview.chromium.org/6066012
diff --git a/autoupdate.py b/autoupdate.py
index 30f3b62..c2ee6cb 100644
--- a/autoupdate.py
+++ b/autoupdate.py
@@ -208,14 +208,14 @@
 
   def GetNoUpdatePayload(self):
     """Returns a payload to the client corresponding to no update."""
-    payload = """ < ?xml version = "1.0" encoding = "UTF-8"? >
-      < gupdate xmlns = "http://www.google.com/update2/response" protocol = "2.0" >
-        < daystart elapsed_seconds = "%s" />
-        < app appid = "{%s}" status = "ok" >
-          < ping status = "ok" />
-          < updatecheck status = "noupdate" />
-        </ app >
-      </ gupdate >
+    payload = """<?xml version="1.0" encoding="UTF-8"?>
+      <gupdate xmlns="http://www.google.com/update2/response" protocol="2.0">
+        <daystart elapsed_seconds="%s"/>
+        <app appid="{%s}" status="ok">
+          <ping status="ok"/>
+          <updatecheck status="noupdate"/>
+        </app>
+      </gupdate>
     """
     return payload % (self._GetSecondsSinceMidnight(), self.app_id)