Skip to content

Commit d1ac779

Browse files
committedAug 9, 2016
Fix for py3.
1 parent e90676a commit d1ac779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scripts/generate_modules_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def build_facts():
100100
args_string = ', '.join(args)
101101

102102
else:
103-
split_point = round(arg_count / 2)
103+
split_point = int(round(arg_count / 2))
104104
top_args = args[:split_point]
105105
bottom_args = args[split_point:]
106106

0 commit comments

Comments
 (0)
Failed to load comments.