Bugs
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
from django.urls import path
|
||||
|
||||
from auth.views import login, logout, club_callback
|
||||
from boards.views import index, board, privacy_policy
|
||||
from boards.views import index, board, privacy_policy, what
|
||||
|
||||
urlpatterns = [
|
||||
path("", index, name="index"),
|
||||
path("what/", privacy_policy, name="what"),
|
||||
path("what/", what, name="what"),
|
||||
|
||||
path("docs/privacy_policy/", privacy_policy, name="privacy_policy"),
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ def initialize(config, board_slug, upload_favicons):
|
||||
print(f"Bad YAML file '{yaml_file}': {ex}")
|
||||
exit(1)
|
||||
|
||||
input(f"Initializing feeds from {config}. Press Enter to continue...")
|
||||
input(f"Initializing feeds from {yaml_file}. Press Enter to continue...")
|
||||
|
||||
for board_index, board_config in enumerate(config.get("boards") or []):
|
||||
if board_slug and board_config["slug"] != board_slug:
|
||||
|
||||
Reference in New Issue
Block a user