Skip to content

Commit

Permalink
print cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Jun 4, 2023
1 parent dd392fc commit cbf6fa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conreq/_core/server_settings/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ class WebserverSettingsForm(EnvFormMixin, ModelForm):
env_name="WEBSERVER_WORKERS",
initial=settings.WEBSERVER_WORKERS,
required=True,
help_text="Number of separate worker processes for the webserver to use. <b>Each worker uses approximately 80MB additional memory.</b>",
help_text="Number of parallel processes for the webserver to use. <b>Improves performance, but each worker uses ~80MB of RAM.</b>",
)
webserver_debug = EnvBooleanField(
env_name="WEBSERVER_DEBUG",
Expand Down
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def main():
+ "\x1b[0m"
)
run_in_safe_mode()
print("\x1b[91m" + "Conreq has crashed again. Giving up." + "\x1b[0m")
print("\x1b[91m" + "Conreq has crashed again. Giving up." + "\x1b[0m")


def run_in_safe_mode():
Expand Down

0 comments on commit cbf6fa8

Please sign in to comment.