Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40d4b36 commit d2494a4Copy full SHA for d2494a4
1 file changed
setupext.py
@@ -114,13 +114,13 @@ def print_line(char='='):
114
def print_status(package, status):
115
initial_indent = "%22s: " % package
116
indent = ' ' * 24
117
- print fill(status, width=76,
+ print fill(str(status), width=76,
118
initial_indent=initial_indent,
119
subsequent_indent=indent)
120
121
def print_message(message):
122
indent = ' ' * 24 + "* "
123
- print fill(message, width=76,
+ print fill(str(message), width=76,
124
initial_indent=indent,
125
126
0 commit comments