Skip to content

Commit

Permalink
update: add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kSpacer201 committed Nov 7, 2020
1 parent 52ac8db commit 9f569d9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/1.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
# print info on viewport , this no needs encode
icu_lib.log_info_on_screen(file_name)

0 comments on commit 9f569d9

Please sign in to comment.