chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e80ebe
)
Always run normpath on cwd in FDroidPopen
author
Daniel Martí
<mvdan@mvdan.cc>
Mon, 10 Feb 2014 16:44:31 +0000
(17:44 +0100)
committer
Daniel Martí
<mvdan@mvdan.cc>
Mon, 10 Feb 2014 16:44:31 +0000
(17:44 +0100)
fdroidserver/common.py
patch
|
blob
|
history
diff --git
a/fdroidserver/common.py
b/fdroidserver/common.py
index d9721d8c0f622075fa9688a8dc700eee3fcd8855..8e2e6054cdaeb0effbf17f492e1d3fd14c1c165c 100644
(file)
--- 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)