Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d2494a4

Browse files
committed
Fix formatting display bug.
svn path=/trunk/matplotlib/; revision=3655
1 parent 40d4b36 commit d2494a4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setupext.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ def print_line(char='='):
114114
def print_status(package, status):
115115
initial_indent = "%22s: " % package
116116
indent = ' ' * 24
117-
print fill(status, width=76,
117+
print fill(str(status), width=76,
118118
initial_indent=initial_indent,
119119
subsequent_indent=indent)
120120

121121
def print_message(message):
122122
indent = ' ' * 24 + "* "
123-
print fill(message, width=76,
123+
print fill(str(message), width=76,
124124
initial_indent=indent,
125125
subsequent_indent=indent)
126126

0 commit comments

Comments
 (0)