We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d266c0d + b7b3a14 commit e2cac7fCopy full SHA for e2cac7f
CHANGELOG.rst
@@ -31,7 +31,7 @@ Fixed
31
-----
32
- ``MultiProjectImporter`` now imports files in the order of the import statements
33
- Fixed server hanging forever on leaving ``rasa shell`` before first message
34
-
+- Fixed rasa init showing traceback error when user does Keyboard Interrupt before choosing a project path
35
36
[1.4.2] - 2019-10-28
37
^^^^^^^^^^^^^^^^^^^^
rasa/cli/scaffold.py
@@ -183,7 +183,7 @@ def run(args: argparse.Namespace) -> None:
183
.ask()
184
)
185
186
- if not os.path.isdir(path):
+ if path and not os.path.isdir(path):
187
_ask_create_path(path)
188
189
if path is None or not os.path.isdir(path):
0 commit comments