eric6_configure.py

changeset 3670
f0cb7579c0b4
parent 3669
ac84ac3c0f05
child 3778
0c5bc18da740
equal deleted inserted replaced
3669:ac84ac3c0f05 3670:f0cb7579c0b4
3 3
4 # Copyright (c) 2006 - 2014 Detlev Offenbach <detlev@die-offenbachs.de> 4 # Copyright (c) 2006 - 2014 Detlev Offenbach <detlev@die-offenbachs.de>
5 # 5 #
6 6
7 """ 7 """
8 Eric5 Configure. 8 Eric6 Configure.
9 9
10 This is the main Python script to configure the eric5 IDE from the outside. 10 This is the main Python script to configure the eric6 IDE from the outside.
11 """ 11 """
12 12
13 from __future__ import unicode_literals 13 from __future__ import unicode_literals
14 try: # Only for Py2 14 try: # Only for Py2
15 import Utilities.compatibility_fixes # __IGNORE_WARNING__ 15 import Utilities.compatibility_fixes # __IGNORE_WARNING__
57 options = [ 57 options = [
58 ("--config=configDir", 58 ("--config=configDir",
59 "use the given directory as the one containing the config files"), 59 "use the given directory as the one containing the config files"),
60 ] 60 ]
61 appinfo = AppInfo.makeAppInfo(sys.argv, 61 appinfo = AppInfo.makeAppInfo(sys.argv,
62 "Eric5 Configure", 62 "Eric6 Configure",
63 "", 63 "",
64 "Configuration editor for eric5", 64 "Configuration editor for eric6",
65 options) 65 options)
66 res = Startup.simpleAppStartup(sys.argv, 66 res = Startup.simpleAppStartup(sys.argv,
67 appinfo, 67 appinfo,
68 createMainWidget) 68 createMainWidget)
69 sys.exit(res) 69 sys.exit(res)

eric ide

mercurial