Skip to content

Commit

Permalink
Merge pull request #246 from asottile/fix_logger_info
Browse files Browse the repository at this point in the history
Fix call to logger.info(...)
  • Loading branch information
ekalinin authored Jan 7, 2020
2 parents 1cd15d7 + 3cbec79 commit 5001f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodeenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ def install_node(env_dir, src_dir, opt):
install_node_wrapped(env_dir, src_dir, opt)
except BaseException:
# this restores the newline suppressed by continued=True
logger.info()
logger.info('')
raise


Expand Down

0 comments on commit 5001f4e

Please sign in to comment.