Skip to content

Commit e2cac7f

Browse files
authored
Merge branch 'master' into augmented-memo-docs
2 parents d266c0d + b7b3a14 commit e2cac7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Fixed
3131
-----
3232
- ``MultiProjectImporter`` now imports files in the order of the import statements
3333
- Fixed server hanging forever on leaving ``rasa shell`` before first message
34-
34+
- Fixed rasa init showing traceback error when user does Keyboard Interrupt before choosing a project path
3535

3636
[1.4.2] - 2019-10-28
3737
^^^^^^^^^^^^^^^^^^^^

rasa/cli/scaffold.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def run(args: argparse.Namespace) -> None:
183183
.ask()
184184
)
185185

186-
if not os.path.isdir(path):
186+
if path and not os.path.isdir(path):
187187
_ask_create_path(path)
188188

189189
if path is None or not os.path.isdir(path):

0 commit comments

Comments
 (0)