~kees/gtg/lp-562604

« back to all changes in this revision

Viewing changes to GTG/plugins/evolution_sync/evolutionProxy.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:
13
13
#
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
 
import os
17
 
import sys
 
16
 
18
17
import evolution
19
18
 
20
19
from GTG.core.task import Task
21
 
 
22
 
#Add this file's directory to the path used to search for libraries
23
 
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
24
 
from evolutionTask import EvolutionTask
25
 
from genericProxy import GenericProxy
 
20
from GTG.plugins.evolution_sync.evolutionTask import EvolutionTask
 
21
from GTG.plugins.evolution_sync.genericProxy import GenericProxy
26
22
 
27
23
 
28
24
class EvolutionProxy(GenericProxy):