eric6.py

changeset 4489
d0d6e4ad31bd
parent 4419
66be66ec3afc
child 4566
a2e8f3c420ec
child 4632
ca310db386ed
diff -r 456c58fc64b0 -r d0d6e4ad31bd eric6.py
--- a/eric6.py	Sun Oct 04 13:35:09 2015 +0200
+++ b/eric6.py	Sun Oct 04 22:37:56 2015 +0200
@@ -27,9 +27,11 @@
     import StringIO as io   # __IGNORE_EXCEPTION__
     import Globals.compatibility_fixes     # __IGNORE_WARNING__
     import locale
+    coverage = 'Python'
 except ImportError:
     import io       # __IGNORE_WARNING__
     basestring = str
+    coverage = 'Python3'
 
 try:
     import sip
@@ -89,6 +91,8 @@
                                 "ThirdParty", "Pygments"))
 sys.path.insert(2, os.path.join(os.path.dirname(__file__),
                                 "ThirdParty", "Jasy"))
+sys.path.insert(2, os.path.join(os.path.dirname(__file__),
+                                "DebugClients", coverage))
 
 from E5Gui.E5Application import E5Application
 

eric ide

mercurial