fix py3 failure

This commit is contained in:
holger krekel 2011-11-07 18:28:30 +00:00
parent a2f4a11301
commit 78438db752
1 changed files with 1 additions and 1 deletions

View File

@ -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