1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/changeset/ed2419f69456/
changeset:   ed2419f69456
user:        hpk42
date:        2011-11-07 19:28:30
summary:     fix py3 failure
affected #:  1 file

diff -r 40ed9c90eed1b6ecfc0bfefc301bfcbf8562efb7 -r 
ed2419f694561257b1e59becf63ad241f203ecc6 _pytest/pytester.py
--- a/_pytest/pytester.py
+++ b/_pytest/pytester.py
@@ -360,7 +360,7 @@
         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

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to