File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,13 @@ def on_config(self, config):
135135 json .dumps (
136136 {
137137 "system" : platform .platform (),
138- "python" : platform .python_version ()
138+ "architecture" : platform .architecture (),
139+ "python" : platform .python_version (),
140+ "command" : " " .join ([
141+ sys .argv [0 ].rsplit (os .sep , 1 )[- 1 ],
142+ * sys .argv [1 :]
143+ ]),
144+ "sys.path" : sys .path
139145 },
140146 default = str ,
141147 indent = 2
Original file line number Diff line number Diff line change @@ -135,7 +135,13 @@ def on_config(self, config):
135135 json .dumps (
136136 {
137137 "system" : platform .platform (),
138- "python" : platform .python_version ()
138+ "architecture" : platform .architecture (),
139+ "python" : platform .python_version (),
140+ "command" : " " .join ([
141+ sys .argv [0 ].rsplit (os .sep , 1 )[- 1 ],
142+ * sys .argv [1 :]
143+ ]),
144+ "sys.path" : sys .path
139145 },
140146 default = str ,
141147 indent = 2
You can’t perform that action at this time.
0 commit comments