1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env python
"""
Script to run GTimeLog from the source checkout without installing
"""
import os
import sys
pkgdir = os.path.join(os.path.dirname(__file__), 'src')
sys.path.insert(0, pkgdir)
from gtimelog.main import main
main()
|