File tree 2 files changed +14
-2
lines changed
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):
135
135
json .dumps (
136
136
{
137
137
"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
139
145
},
140
146
default = str ,
141
147
indent = 2
Original file line number Diff line number Diff line change @@ -135,7 +135,13 @@ def on_config(self, config):
135
135
json .dumps (
136
136
{
137
137
"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
139
145
},
140
146
default = str ,
141
147
indent = 2
You can’t perform that action at this time.
0 commit comments