File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ def load_library() -> CDLL | None:
6868 if platform .system () == 'Darwin' :
6969 library = CDLL (lib_path )
7070 if library is None :
71- print ("WebUI Dynamic Library not found." )
71+ print ("WebUI: Dynamic Library not found." )
7272 elif platform .system () == 'Windows' :
7373 if sys .version_info .major == 3 and sys .version_info .minor <= 8 :
7474 os .chdir (os .getcwd ())
@@ -79,12 +79,12 @@ def load_library() -> CDLL | None:
7979 os .add_dll_directory (os .getcwd ())
8080 library = cdll .LoadLibrary (lib_path )
8181 if library is None :
82- print ("WebUI Dynamic Library not found." )
82+ print ("WebUI: Dynamic Library not found." )
8383 elif platform .system () == 'Linux' :
8484 library = CDLL (lib_path )
8585 if library is None :
86- print ("WebUI Dynamic Library not found." )
86+ print ("WebUI: Dynamic Library not found." )
8787 else :
88- print ("Unsupported OS" )
88+ print ("WebUI: Unsupported OS" )
8989
9090 return library
Original file line number Diff line number Diff line change 1717# Loading the library in for bindings
1818lib : CDLL | None = ll .load_library ()
1919if lib is None :
20- print ('WebUI Dynamic Library not found.' )
20+ print ('WebUI: Dynamic Library not found.' )
2121 sys .exit (1 )
2222else :
23- print ('WebUI Dynamic Library found.' )
2423 webui_lib : CDLL = lib
2524
2625
You can’t perform that action at this time.
0 commit comments