Skip to content

Commit

Permalink
Fix ft.show_info() doesn't work in Jupyter(alteryx#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
FreshLeaf8865 committed Jul 31, 2019
1 parent c583ff1 commit 6d96238
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion featuretools/utils/cli_utils.py
Expand Up @@ -15,7 +15,8 @@


def show_info():
subprocess.run(["featuretools", "info"])
res = subprocess.run(["featuretools", "info"], stdout=subprocess.PIPE)
print(res.stdout.decode('utf-8'))


def print_info():
Expand Down

0 comments on commit 6d96238

Please sign in to comment.