svgui/pyjs/build.py
changeset 1773 38fde37c3766
parent 1771 f68a105000be
child 1775 b45f2768fab1
--- a/svgui/pyjs/build.py	Sat Aug 19 00:30:22 2017 +0300
+++ b/svgui/pyjs/build.py	Sat Aug 19 00:58:44 2017 +0300
@@ -672,57 +672,66 @@
     global app_platforms
 
     parser = OptionParser(usage=usage, version=version)
-    parser.add_option("-o",
-                      "--output",
-                      dest="output",
-                      help="directory to which the webapp should be written"
-    )
-    parser.add_option("-j",
-                      "--include-js",
-                      dest="js_includes",
-                      action="append",
-                      help="javascripts to load into the same frame as the rest of the script"
-    )
-    parser.add_option("-I",
-                      "--library_dir",
-                      dest="library_dirs",
-                      action="append",
-                      help="additional paths appended to PYJSPATH"
-    )
-    parser.add_option("-D",
-                      "--data_dir",
-                      dest="data_dir",
-                      help="path for data directory"
-    )
-    parser.add_option("-m",
-                      "--dynamic-modules",
-                      action="store_true",
-                      dest="dynamic",
-                      default=False,
-                      help="Split output into separate dynamically-loaded modules (experimental)"
-    )
-    parser.add_option("-P",
-                      "--platforms",
-                      dest="platforms",
-                      help="platforms to build for, comma-separated"
-    )
-    parser.add_option("-d",
-                      "--debug",
-                      action="store_true",
-                      dest="debug"
-    )
-    parser.add_option("-O",
-                      "--optimize",
-                      action="store_true",
-                      dest="optimize",
-                      default=False,
-                      help="Optimize generated code (removes all print statements)",
-    )
-    parser.add_option("-c",
-                      "--cache_buster",
-                      action="store_true",
-                      dest="cache_buster",
-                      help="Enable browser cache-busting (MD5 hash added to output filenames)"
+    parser.add_option(
+        "-o",
+        "--output",
+        dest="output",
+        help="directory to which the webapp should be written"
+    )
+    parser.add_option(
+        "-j",
+        "--include-js",
+        dest="js_includes",
+        action="append",
+        help="javascripts to load into the same frame as the rest of the script"
+    )
+    parser.add_option(
+        "-I",
+        "--library_dir",
+        dest="library_dirs",
+        action="append",
+        help="additional paths appended to PYJSPATH"
+    )
+    parser.add_option(
+        "-D",
+        "--data_dir",
+        dest="data_dir",
+        help="path for data directory"
+    )
+    parser.add_option(
+        "-m",
+        "--dynamic-modules",
+        action="store_true",
+        dest="dynamic",
+        default=False,
+        help="Split output into separate dynamically-loaded modules (experimental)"
+    )
+    parser.add_option(
+        "-P",
+        "--platforms",
+        dest="platforms",
+        help="platforms to build for, comma-separated"
+    )
+    parser.add_option(
+        "-d",
+        "--debug",
+        action="store_true",
+        dest="debug"
+    )
+    parser.add_option(
+        "-O",
+        "--optimize",
+        action="store_true",
+        dest="optimize",
+        default=False,
+        help="Optimize generated code (removes all print statements)",
+    )
+    parser.add_option(
+        "-c",
+        "--cache_buster",
+        action="store_true",
+        dest="cache_buster",
+        help="Enable browser cache-busting (MD5 hash added to output filenames)"
     )
 
     parser.set_defaults(output="output", js_includes=[], library_dirs=[],