commit 3590fa843f5c3c5d40c4a42fd62b9a1e7098cd6e parent 180f599c9673bb98302e3a3c6359bc8a71144837 Author: Florian Dold <florian.dold@gmail.com> Date: Fri, 11 Oct 2019 15:53:22 +0530 fix python type Diffstat:
| M | bin/taler-deployment | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment @@ -102,7 +102,7 @@ def update_checkout(p: Path): def default_configure(*extra): pfx = Path.home() / "local" - subprocess.run(["./configure", f"--prefix={pfx.as_posix}"] + extra, check=True) + subprocess.run(["./configure", f"--prefix={pfx.as_posix}"] + list(extra), check=True) def build_libmicrohttpd(p):