File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -897,7 +897,13 @@ def create_server_info_file(self):
897
897
mwi_server_info_file = mwi_logs_dir / "mwi_server.info"
898
898
mwi_auth_token_str = token_auth .get_mwi_auth_token_access_str (self .settings )
899
899
with open (mwi_server_info_file , "w" , encoding = "utf-8" ) as fh :
900
- fh .write (self .settings ["mwi_server_url" ] + mwi_auth_token_str + "\n " + self .settings ["browser_title" ] + "\n " )
900
+ fh .write (
901
+ self .settings ["mwi_server_url" ]
902
+ + mwi_auth_token_str
903
+ + "\n "
904
+ + self .settings ["browser_title" ]
905
+ + "\n "
906
+ )
901
907
self .mwi_server_session_files ["mwi_server_info_file" ] = mwi_server_info_file
902
908
logger .debug (f"Server info stored into: { mwi_server_info_file } " )
903
909
Original file line number Diff line number Diff line change 7
7
8
8
logger = mwi_logger .get ()
9
9
10
+
10
11
def _get_session_name ():
11
12
"""Get the session name for the MATLAB Proxy instance.
12
13
You can’t perform that action at this time.
0 commit comments