Skip to content

Commit 0da2580

Browse files
committed
Use path.join
1 parent b73173f commit 0da2580

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def __init__(self):
2626
self.tmpdir_count = 0
2727

2828
def get(self):
29-
path = os.path.join(tmpdir.strpath, five.text(self.tmpdir_count))
29+
path = tmpdir.join(five.text(self.tmpdir_count)).strpath
3030
self.tmpdir_count += 1
3131
os.mkdir(path)
3232
return path

0 commit comments

Comments
 (0)