[tor-commits] [chutney/master] TorNet: stringify Paths before joining

nickm at torproject.org nickm at torproject.org
Sat Jul 18 15:41:23 UTC 2020


commit 64ff5dc662bd988404f0a9677c53c8d39c5e294e
Author: c <c at chroniko.jp>
Date:   Mon Jul 6 03:01:13 2020 +0000

    TorNet: stringify Paths before joining
---
 lib/chutney/TorNet.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/chutney/TorNet.py b/lib/chutney/TorNet.py
index f31b254..70defa0 100644
--- a/lib/chutney/TorNet.py
+++ b/lib/chutney/TorNet.py
@@ -743,9 +743,9 @@ class LocalNodeBuilder(NodeBuilder):
             tor_gencert,
             '--create-identity-key',
             '--passphrase-fd', '0',
-            '-i', idfile,
-            '-s', skfile,
-            '-c', certfile,
+            '-i', str(idfile),
+            '-s', str(skfile),
+            '-c', str(certfile),
             '-m', str(lifetime),
             '-a', addr,
             ]





More information about the tor-commits mailing list