eric6/eric6_hexeditor.py

changeset 7960
e8fc383322f7
parent 7923
91e843545d9a
child 8143
2c730d5fd177
equal deleted inserted replaced
7959:44e15eda6506 7960:e8fc383322f7
3 3
4 # Copyright (c) 2016 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> 4 # Copyright (c) 2016 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
5 # 5 #
6 6
7 """ 7 """
8 Eric6 Hex Editor. 8 eric Hex Editor.
9 9
10 This is the main Python script that performs the necessary initialization 10 This is the main Python script that performs the necessary initialization
11 of the hex editor and starts the Qt event loop. This is a standalone version 11 of the hex editor and starts the Qt event loop. This is a standalone version
12 of the integrated hex editor. 12 of the integrated hex editor.
13 """ 13 """
68 ("--settings=settingsDir", 68 ("--settings=settingsDir",
69 "use the given directory to store the settings files"), 69 "use the given directory to store the settings files"),
70 ("", "name of file to edit") 70 ("", "name of file to edit")
71 ] 71 ]
72 appinfo = AppInfo.makeAppInfo(sys.argv, 72 appinfo = AppInfo.makeAppInfo(sys.argv,
73 "Eric6 Hex Editor", 73 "eric Hex Editor",
74 "", 74 "",
75 "Little tool to edit binary files.", 75 "Little tool to edit binary files.",
76 options) 76 options)
77 res = Startup.simpleAppStartup(sys.argv, 77 res = Startup.simpleAppStartup(sys.argv,
78 appinfo, 78 appinfo,

eric ide

mercurial