Fixes the view of coverage data in eric.

Mon, 10 Apr 2017 21:23:54 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Mon, 10 Apr 2017 21:23:54 +0200
changeset 5699
0e40b560dcd1
parent 5697
ee81081a0ff7
child 5700
3bcd20e99b52

Fixes the view of coverage data in eric.

eric6.py file | annotate | diff | comparison | revisions
--- a/eric6.py	Mon Apr 10 19:14:40 2017 +0200
+++ b/eric6.py	Mon Apr 10 21:23:54 2017 +0200
@@ -27,11 +27,9 @@
     import Globals.compatibility_fixes     # __IGNORE_WARNING__
     import StringIO as io   # __IGNORE_EXCEPTION__
     import locale
-    coverage = 'Python'
 except ImportError:
     import io       # __IGNORE_WARNING__
     basestring = str
-    coverage = 'Python3'
 
 try:
     import sip
@@ -97,7 +95,7 @@
 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))
+                                "DebugClients", "Python"))
 
 from E5Gui.E5Application import E5Application
 

eric ide

mercurial