Upstream version 7.35.138.0
[platform/framework/web/crosswalk.git] / src / xwalk / app / tools / android / compress_js_and_css.py
index f46a9ec..4f70cd4 100755 (executable)
@@ -7,6 +7,7 @@
 import os
 import subprocess
 
+
 def GetJARFilename():
   # Version of YUI Compressor.
   version = "2.4.8"
@@ -20,7 +21,7 @@ def ExecuteCmd(file_list, ext):
   for file_full_path in file_list:
     if os.path.exists(file_full_path):
       cmd_args = ["java", "-jar", GetJARFilename(), "--type=" + ext,
-          file_full_path, "-o", file_full_path]
+                  file_full_path, "-o", file_full_path]
       subprocess.call(cmd_args)