diff --git a/scripts/1.py b/scripts/1.py index 606da77..b5bc6f1 100644 --- a/scripts/1.py +++ b/scripts/1.py @@ -3,7 +3,8 @@ files = icu_lib.open_file_dialog("open dialog", ".", "*") # if utf8 string , encode -print(files[0].encode('utf8')) +file_name = files[0].encode('utf8') +print(file_name) -# print info on viewport -icu_lib.log_info_on_screen("Hello , UEPyICU") \ No newline at end of file +# print info on viewport , this no needs encode +icu_lib.log_info_on_screen(file_name) \ No newline at end of file