Fix incorrect path for manifest XML

Change-Id: I621288ea4d894b491d68c49cec42f04d8b103a3a
diff --git a/crowdin_sync.py b/crowdin_sync.py
index e9c0321..57f4d2c 100755
--- a/crowdin_sync.py
+++ b/crowdin_sync.py
@@ -586,11 +586,7 @@
     if xml_extra is None:
         sys.exit(1)
 
-    xml_snippet = load_xml(x='%s/android/snippets/bliss.xml' % base_path)
-    if xml_snippet is None:
-        xml_snippet = load_xml(x='%s/android/snippets/cm.xml' % base_path)
-    if xml_snippet is None:
-        xml_snippet = load_xml(x='%s/android/snippets/hal_cm_all.xml' % base_path)
+    xml_snippet = load_xml(x='%s/manifest/bliss.xml' % base_path)
     if xml_snippet is not None:
         xml_files = (xml_android, xml_snippet, xml_extra)
     else: