mirror of
https://github.com/9001/copyparty.git
synced 2025-10-03 17:59:19 +02:00
exe: survive ascii locales
This commit is contained in:
parent
fbed322d3b
commit
4f94a9e38b
1 changed files with 4 additions and 1 deletions
|
@ -10,7 +10,10 @@ if possible, for performance and security reasons, please use this instead:
|
|||
https://github.com/9001/copyparty/releases/latest/download/copyparty-sfx.py
|
||||
"""
|
||||
|
||||
print(v.replace("\n", "\n▒▌ ")[1:] + "\n")
|
||||
try:
|
||||
print(v.replace("\n", "\n▒▌ ")[1:] + "\n")
|
||||
except:
|
||||
print(v.replace("\n", "\n|| ")[1:] + "\n")
|
||||
|
||||
|
||||
import re
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue