[py-svn] r10761 - py/dist/py/test

arigo at codespeak.net arigo at codespeak.net
Sun Apr 17 12:48:55 CEST 2005


Author: arigo
Date: Sun Apr 17 12:48:55 2005
New Revision: 10761

Modified:
   py/dist/py/test/config.py
Log:
Oups.  Missing a return here.


Modified: py/dist/py/test/config.py
==============================================================================
--- py/dist/py/test/config.py	(original)
+++ py/dist/py/test/config.py	Sun Apr 17 12:48:55 2005
@@ -105,7 +105,7 @@
         name = self.option.session 
         name += 'Session'
         try: 
-            self.getinitialvalue(name) 
+            return self.getinitialvalue(name) 
         except ValueError: 
             return getattr(py.test, name) 
 



More information about the pytest-commit mailing list