Skip to content
Snippets Groups Projects
Commit 1b0d4272 authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

host a webclient by default

parent 3277a650
No related branches found
No related tags found
No related merge requests found
...@@ -235,8 +235,8 @@ def setup(): ...@@ -235,8 +235,8 @@ def setup():
parser.add_argument('--pid-file', dest="pid", help="When running as a " parser.add_argument('--pid-file', dest="pid", help="When running as a "
"daemon, the file to store the pid in", "daemon, the file to store the pid in",
default="hs.pid") default="hs.pid")
parser.add_argument("-w", "--webclient", dest="webclient", parser.add_argument("-W", "--webclient", dest="webclient", default=True,
action="store_true", help="Host the web client.") action="store_false", help="Don't host a web client.")
args = parser.parse_args() args = parser.parse_args()
verbosity = int(args.verbose) if args.verbose else None verbosity = int(args.verbose) if args.verbose else None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment