UltiSnips/plugin/PySnipEmu/debug.py
2009-07-08 09:57:55 +02:00

12 lines
148 B
Python

#!/usr/bin/env python
# encoding: utf-8
__all__ = [ "debug" ]
def debug(s):
f = open("/tmp/file.txt","a")
f.write(s+'\n')
f.close()