Commit c010a240 by Ye Zhou Committed by Tianqi Chen

Fix error during loading library in python3 (#130)

parent 8928013d
......@@ -80,7 +80,7 @@ cdef BuildDoc(nn_uint num_args,
type_info = arg_types[i]
ret = '%s : %s' % (key, type_info)
if len(arg_descs[i]) != 0:
ret += '\n ' + arg_descs[i]
ret += '\n ' + py_str(arg_descs[i])
param_str.append(ret)
doc_str = ('Parameters\n' +
'----------\n' +
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment