From 78438db75294ef8dd50167581d9d33498b6ac0f6 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Mon, 7 Nov 2011 18:28:30 +0000 Subject: [PATCH] fix py3 failure --- _pytest/pytester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/pytester.py b/_pytest/pytester.py index 54dd8a2be..060924edc 100644 --- a/_pytest/pytester.py +++ b/_pytest/pytester.py @@ -360,7 +360,7 @@ class TmpTestdir: return items, rec[0] def parseconfig(self, *args): - args = map(str, args) + args = [str(x) for x in args] for x in args: if str(x).startswith('--basetemp'): break