55 dbg = ericApp().getObject("DebugUI") |
55 dbg = ericApp().getObject("DebugUI") |
56 dbs = ericApp().getObject("DebugServer") |
56 dbs = ericApp().getObject("DebugServer") |
57 |
57 |
58 # prepare the session data dictionary |
58 # prepare the session data dictionary |
59 # step 0: header |
59 # step 0: header |
60 sessionDict = {} |
60 sessionDict = {"header": {}} |
61 sessionDict["header"] = {} |
|
62 if not self.__isGlobal: |
61 if not self.__isGlobal: |
63 sessionDict["header"][ |
62 sessionDict["header"][ |
64 "comment" |
63 "comment" |
65 ] = "eric session file for project {0}".format(project.getProjectName()) |
64 ] = "eric session file for project {0}".format(project.getProjectName()) |
66 sessionDict["header"][ |
65 sessionDict["header"][ |