mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
exe: survive ascii locales
This commit is contained in:
parent
fbed322d3b
commit
4f94a9e38b
|
@ -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
|
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
|
import re
|
||||||
|
|
Loading…
Reference in a new issue