Skip to content

Commit

Permalink
Fix to generate_config script.
Browse files Browse the repository at this point in the history
Wasn't properly specifying HTTP port.
  • Loading branch information
jsharf committed Mar 11, 2024
1 parent 5d29fcf commit 9eda766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cb2game/server/generate_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def ConfigFromUserInput() -> Config:
PrintSectionHeader(Section.HTTP_SETTINGS)

# First, ask for the server port. Default to 8080.
config.port = IntegerFromUserInput("Server port", 8080)
config.http_port = IntegerFromUserInput("Server port", 8080)

PrintSectionHeader(Section.DATABASE_SETTINGS)
# Next, ask for the database location. Default to "" -- Looks up system default via appdirs.
Expand Down

0 comments on commit 9eda766

Please sign in to comment.