fix py3 failure
This commit is contained in:
parent
a2f4a11301
commit
78438db752
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue