Skip to content

Commit

Permalink
Merge pull request numpy#14486 from WarrenWeckesser/newline
Browse files Browse the repository at this point in the history
MAINT: distutils: Add newline at the end of printed warnings.
  • Loading branch information
seberg authored Sep 11, 2019
2 parents f14aee7 + 46cf7ff commit bdc5e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/distutils/misc_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def info(self, message):
print(message)

def warn(self, message):
sys.stderr.write('Warning: %s' % (message,))
sys.stderr.write('Warning: %s\n' % (message,))

def set_options(self, **options):
"""
Expand Down

0 comments on commit bdc5e42

Please sign in to comment.