Fix path encodings

This commit is contained in:
Klaus-Uwe Mitterer 2017-10-26 22:38:55 +02:00
parent 3c89689f6b
commit 87f77a769a
1 changed files with 2 additions and 2 deletions

View File

@ -38,9 +38,9 @@ def application(env, re):
val = True
else:
conn = True
cto = split[1]
cto = split[1].encode("latin-1").decode("utf-8")
cfrm = split[0]
cfrm = split[0].encode("latin-1").decode("utf-8")
try:
rtype = "conn" if conn else "val" if val else args["type"][0]