Mercurial > repos > xuebing > sharplabtool
view tools/visualization/LAJ.py @ 0:9071e359b9a3
Uploaded
author | xuebing |
---|---|
date | Fri, 09 Mar 2012 19:37:19 -0500 |
parents | |
children |
line wrap: on
line source
#!/usr/bin/env python """ Copies LAV file over to new file for use with LAJ """ import sys, shutil assert sys.version_info[:2] >= ( 2, 4 ) shutil.copyfile(sys.argv[1],sys.argv[2])