summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2015-06-19 07:58:45 +0200
committerFlorian Bruhin <git@the-compiler.org>2015-06-19 09:40:48 +0200
commite2c375b87409fc42757be782188a4450bd560fb8 (patch)
tree5f3bca80cf32eb3bae7eea2fcc7214e3adaa68ab
parentfd8258721349ab075b990c1d2055c56746fab22e (diff)
downloadqutebrowser-e2c375b87409fc42757be782188a4450bd560fb8.tar.gz
qutebrowser-e2c375b87409fc42757be782188a4450bd560fb8.zip
Add missing docstring for get_build_exe_options().
-rwxr-xr-xscripts/freeze.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/freeze.py b/scripts/freeze.py
index 67242cb77..6185634ec 100755
--- a/scripts/freeze.py
+++ b/scripts/freeze.py
@@ -49,6 +49,11 @@ def get_egl_path():
def get_build_exe_options(skip_html=False):
+ """Get the options passed as build_exe_options to cx_Freeze.
+
+ If either skip_html or --qute-skip-html as argument is given, doesn't
+ freeze the documentation.
+ """
if '--qute-skip-html' in sys.argv:
skip_html = True
sys.argv.remove('--qute-skip-html')