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):
897897 mwi_server_info_file = mwi_logs_dir / "mwi_server.info"
898898 mwi_auth_token_str = token_auth .get_mwi_auth_token_access_str (self .settings )
899899 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+ )
901907 self .mwi_server_session_files ["mwi_server_info_file" ] = mwi_server_info_file
902908 logger .debug (f"Server info stored into: { mwi_server_info_file } " )
903909
Original file line number Diff line number Diff line change 77
88logger = mwi_logger .get ()
99
10+
1011def _get_session_name ():
1112 """Get the session name for the MATLAB Proxy instance.
1213
You can’t perform that action at this time.
0 commit comments