diff options
author | petitviolet <violethero0820@gmail.com> | 2014-03-05 11:44:03 +0900 |
---|---|---|
committer | petitviolet <violethero0820@gmail.com> | 2014-03-05 11:44:03 +0900 |
commit | 9dff39398139c258106247ddd6ef6c913b0a9eee (patch) | |
tree | 421d8925d55fe941ee66630a3d80013c77cbbe22 /template/python/snip-class.py | |
parent | 66dea09d78278ecb8363bdd26df045f9d0f200d5 (diff) | |
download | vim-sonictemplate-9dff39398139c258106247ddd6ef6c913b0a9eee.tar.gz vim-sonictemplate-9dff39398139c258106247ddd6ef6c913b0a9eee.tar.bz2 vim-sonictemplate-9dff39398139c258106247ddd6ef6c913b0a9eee.zip |
revise python template
Diffstat (limited to 'template/python/snip-class.py')
-rw-r--r-- | template/python/snip-class.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/python/snip-class.py b/template/python/snip-class.py index 636204d..aee2e08 100644 --- a/template/python/snip-class.py +++ b/template/python/snip-class.py @@ -1,4 +1,4 @@ -class {{_expr_:substitute('{{_input_:name}}(object)', '\w\+', '\u\0', '')}}: +class {{_expr_:substitute('{{_input_:name}}', '\w\+', '\u\0', '')}}(object): def __init__(self{{_cursor_}}): def __repr__(self): |