Commit 8cc51ed5 authored by Olivier Aubert's avatar Olivier Aubert

python-ctypes: fix spacing in docstring comments

parent 0a437254
...@@ -529,7 +529,7 @@ def generate_wrappers(methods): ...@@ -529,7 +529,7 @@ def generate_wrappers(methods):
args=", ".join( p[1] for p in params ) args=", ".join( p[1] for p in params )
print " def %s(%s):" % (name, args) print " def %s(%s):" % (name, args)
print ' """%s\n"""' % fix_python_comment(comment) print ' """%s\n """' % fix_python_comment(comment)
if params and params[-1][0] == 'libvlc_exception_t*': if params and params[-1][0] == 'libvlc_exception_t*':
# Exception handling # Exception handling
print " e=VLCException()" print " e=VLCException()"
......
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