~kees/gtg/lp-562604

« back to all changes in this revision

Viewing changes to GTG/plugins/rtm_sync/gtgTask.py

  • Committer: Luca Invernizzi
  • Date: 2010-03-16 02:16:14 UTC
  • Revision ID: invernizzi.l@gmail.com-20100316021614-1mdq2pb5ugb76omo
plugins are ready for python-distutils-extra

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# You should have received a copy of the GNU General Public License along with
15
15
# this program.  If not, see <http://www.gnu.org/licenses/>.
16
16
 
17
 
import sys
18
 
import os
19
17
import datetime
20
18
 
21
19
from GTG.tools.dates import NoDate, RealDate
22
 
 
23
 
#Add this file's directory to the path used to search for libraries
24
 
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
25
 
from genericTask import GenericTask
 
20
from GTG.plugins.rtm_sync.genericTask import GenericTask
26
21
 
27
22
class GtgTask(GenericTask):
28
23