From b4a816d8021d84f0de39fefb915386e5f7ea5031 Mon Sep 17 00:00:00 2001 From: Holger Rapp Date: Fri, 22 Mar 2013 07:51:01 +0100 Subject: [PATCH] Remove a stray '2' from the python snippets. Patch by Stanislav. --- UltiSnips/python.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UltiSnips/python.snippets b/UltiSnips/python.snippets index 8fd268d..09ed9b0 100644 --- a/UltiSnips/python.snippets +++ b/UltiSnips/python.snippets @@ -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) `