Remove xml_extra

Change-Id: I9a7af49ae6de03cbd0d0429eedbbf3a8c43fcf56
diff --git a/crowdin_sync.py b/crowdin_sync.py
index 5e4de8e..56a5c62 100755
--- a/crowdin_sync.py
+++ b/crowdin_sync.py
@@ -581,16 +581,11 @@
     if xml_android is None:
         sys.exit(1)
 
-    xml_extra = load_xml(x='%s/config/%s_extra_packages.xml'
-                           % (_DIR, default_branch))
-    if xml_extra is None:
-        sys.exit(1)
-
     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)
+        xml_files = (xml_android, xml_snippet)
     else:
-        xml_files = (xml_android, xml_extra)
+        xml_files = (xml_android)
 
     if args.config:
         files = ['%s/config/%s' % (_DIR, args.config)]