forked from luna/vim-rana-local
18 lines
370 B
Python
18 lines
370 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
wakatime.cli
|
|
~~~~~~~~~~~~
|
|
|
|
Command-line entry point.
|
|
|
|
:copyright: (c) 2013 Alan Hamlett.
|
|
:license: BSD, see LICENSE for more details.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
import wakatime
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(wakatime.main(sys.argv))
|