Remove a stray '2' from the python snippets. Patch by Stanislav.

This commit is contained in:
Holger Rapp 2013-03-22 07:51:01 +01:00
parent 7b41b188f1
commit b4a816d802

View File

@ -125,7 +125,7 @@ args = get_args(t[4])
write_docstring_args(args, snip)
if args:
snip.rv += '\n' + snip.mkline('', indent='')
snip += '{0} 2 '.format(tripple_quotes(snip))
snip += '{0}'.format(tripple_quotes(snip))
write_init_body(args, t[2], snip)
`