From e2c375b87409fc42757be782188a4450bd560fb8 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 19 Jun 2015 07:58:45 +0200 Subject: [PATCH] Add missing docstring for get_build_exe_options(). --- scripts/freeze.py | 5 +++++ 1 file changed, 5 insertions(+) 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')