Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/c553111aed06be7cd08df863dc8544fbbead9096?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix program description

master
Ferry Boender 5 years ago
parent 40badfe2d6
commit c553111aed
  1. 4
      src/scriptform.py

@ -150,7 +150,9 @@ def main(): # pragma: no cover
"""
main method
"""
parser = argparse.ArgumentParser(description='My Application.')
desc = """A stand-alone webserver that automatically generates forms """ \
"""from JSON to serve as frontends to scripts."""
parser = argparse.ArgumentParser(description=desc)
parser.add_argument('--version',
action='version',
version='%(prog)s %%VERSION%%')

Loading…
Cancel
Save