eric6/eric6config.py

branch
setup.py
changeset 6949
a5255f1ba3f0
parent 6942
2602857055c5
child 7229
53054eb5b15a
equal deleted inserted replaced
6946:660757d6c57b 6949:a5255f1ba3f0
7 Module containing the default configuration of the eric6 installation. 7 Module containing the default configuration of the eric6 installation.
8 """ 8 """
9 9
10 from __future__ import unicode_literals 10 from __future__ import unicode_literals
11 11
12 import sys
13 import os 12 import os
14 13
15 __ericDir = os.path.dirname(sys.argv[0]) 14 __ericDir = os.path.dirname(__file__)
16 15
17 _pkg_config = { 16 _pkg_config = {
18 'ericDir': __ericDir, 17 'ericDir': __ericDir,
19 'ericPixDir': os.path.join(__ericDir, 'pixmaps'), 18 'ericPixDir': os.path.join(__ericDir, 'pixmaps'),
20 'ericIconDir': os.path.join(__ericDir, 'icons'), 19 'ericIconDir': os.path.join(__ericDir, 'icons'),

eric ide

mercurial