diff options
Diffstat (limited to 'tests/path.py')
-rwxr-xr-x | tests/path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/path.py b/tests/path.py index 2a4affe77..1b703afab 100755 --- a/tests/path.py +++ b/tests/path.py @@ -190,7 +190,7 @@ class path(text_type): """ Joins the path with the argument given and returns the result. """ - return self.__class__(os.path.join(self, *map(self.__class__, args))) + return self.__class__(os.path.join(self, *list(map(self.__class__, args)))) __div__ = __truediv__ = joinpath |