diff --git a/fdroidserver/common.py b/fdroidserver/common.py index d9721d8c..8e2e6054 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -1385,6 +1385,8 @@ def FDroidPopen(commands, cwd=None, output=True): :returns: A PopenResult. """ + cwd = os.path.normpath(cwd) + if output: if cwd: logging.info("Directory: %s" % cwd)