We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a5426d commit 1d436c2Copy full SHA for 1d436c2
help/help_page.py
@@ -17,7 +17,7 @@ def index():
17
# Redirect form searches to /help/<search>
18
if request.args.get('search'):
19
return redirect(
20
- url_for('help_page.single', topic=request.args.get('search'))
+ url_for('help.help_page.single', topic=request.args.get('search'))
21
)
22
23
return render_template(
@@ -52,7 +52,7 @@ def single(topic=None):
52
if len(search_topics) == 1:
53
found_topic = next(iter(search_topics.values()))
54
55
- url_for('help_page.single', topic=found_topic['name'])
+ url_for('help.help_page.single', topic=found_topic['name'])
56
57
58
# Respond with a 200 showing any results,
0 commit comments