~kees/gtg/lp-562604

« back to all changes in this revision

Viewing changes to GTG/plugins/evolution_sync/evolutionSync.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:
16
16
# this program.  If not, see <http://www.gnu.org/licenses/>.
17
17
 
18
18
import gtk
19
 
import os
20
 
import sys
21
19
from threading import Thread
22
20
 
23
21
from GTG import _
24
 
 
25
 
#Add this file's directory to the path used to search for libraries
26
 
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
27
 
from syncEngine import SyncEngine
 
22
from GTG.plugins.evolution_sync.syncEngine import SyncEngine
28
23
 
29
24
class EvolutionSync:
30
25