Skip to content

Commit

Permalink
Merge pull request #5126 from RasaHQ/url_fix
Browse files Browse the repository at this point in the history
Fix end-to-end warning url
  • Loading branch information
Brian Hopkins authored Jan 24, 2020
2 parents d9cd585 + e9ee74e commit 0d28264
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelog/5126.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Updated the end-to-end ValueError you recieve when you have a invalid story format to point
to the updated doc link.
2 changes: 1 addition & 1 deletion rasa/core/training/dsl.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _parse_item(self, line: Text) -> Optional["Message"]:
"Encountered invalid end-to-end format for message "
"`{}`. Please visit the documentation page on "
"end-to-end evaluation at {}/user-guide/evaluating-models/"
"end-to-end-evaluation/".format(line, DOCS_BASE_URL)
"#end-to-end-evaluation/".format(line, DOCS_BASE_URL)
)

intent = match.group(2)
Expand Down

0 comments on commit 0d28264

Please sign in to comment.