minor fix

This commit is contained in:
Nguyen Huu Thuong
2020-08-15 15:49:38 +02:00
parent 8125f0487e
commit 2c8f07d59c

2
app.py
View File

@@ -44,7 +44,7 @@ def strip_and_parse_envs(p):
return None return None
for c in strips: for c in strips:
p = p.strip(c) p = p.strip(c)
return path.expandvars(p) if p == "." else path.realpath(p) return path.expandvars(p) if p != "." else path.realpath(p)
def connect(): def connect():