~jhonnyc/cgmail/jonathanc-branch

« back to all changes in this revision

Viewing changes to cgmail.py

  • Committer: Marco Ferragina
  • Date: 2007-05-06 15:51:12 UTC
  • Revision ID: marco.ferragina@gmail.com-20070506155112-874uk2m8blrknyuf
Restructured package source dir. Now is much more organized. Implemented right click menu on account window treeview

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
import sys
3
3
import os
4
4
 
5
 
from src.accountswindow import AccountsWindow
 
5
cwd = os.getcwd()
 
6
sys.path.append(cwd)
 
7
sys.path.append(os.path.join(cwd, "src"))
 
8
 
 
9
from src.manager.accountswindow import AccountsWindow
6
10
 
7
11
cwd = os.getcwd()
8
12
sys.path.append(cwd)