1
0
mirror of https://github.com/akelge/vim synced 2025-12-14 22:35:13 +00:00

migration bro

This commit is contained in:
Andrea Mistrali
2015-03-13 16:06:15 +01:00
parent 0930fdeda2
commit fda55f2e8b
160 changed files with 0 additions and 2465 deletions

View File

@ -0,0 +1,26 @@
#!/usr/bin/env python
#-*- coding: utf-8 -*-
"""
Copyright by @@LONGNAME@@ <@@EMAIL@@>
First version: @@crdate@@
Synopsis: @@DESCR@@
$Id$
"""
__version__ ='0.1'
__author__ ='@@LONGNAME@@ <@@EMAIL@@>'
def main():
pass
# If we have been called as 'python <script>' let's call main function
if __name__ == "__main__":
main()
# vim: set ts=4 sw=4 tw=79 ft=python :