~menesis/ubuntu/maverick/gtimelog/maverick

« back to all changes in this revision

Viewing changes to gtimelog

  • Committer: Bazaar Package Importer
  • Author(s): Barry Warsaw
  • Date: 2010-09-10 10:12:03 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100910101203-r7epgzni3537hkxw
Tags: 0.4.0-0ubuntu1
New packaging for new upstream.

Show diffs side-by-side

added added

removed removed

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