Skip to content

Commit

Permalink
change default port so photobooth app on 8000 doesnt conflict normally.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgineer85 committed Nov 17, 2024
1 parent b802927 commit 2094bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wigglecam/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

parser = argparse.ArgumentParser()
parser.add_argument("--host", action="store", type=str, default="0.0.0.0", help="Host the server is bound to (default: %(default)s).")
parser.add_argument("--port", action="store", type=int, default=8000, help="Port the server listens to (default: %(default)s).")
parser.add_argument("--port", action="store", type=int, default=8010, help="Port the server listens to (default: %(default)s).")

logger = logging.getLogger(f"{__name__}")

Expand Down

0 comments on commit 2094bcd

Please sign in to comment.