[pypy-svn] r31144 - pypy/dist/pypy/tool

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Aug 7 23:59:23 CEST 2006


Author: cfbolz
Date: Mon Aug  7 23:59:21 2006
New Revision: 31144

Modified:
   pypy/dist/pypy/tool/option.py
Log:
typo that made --oldstyle stop working


Modified: pypy/dist/pypy/tool/option.py
==============================================================================
--- pypy/dist/pypy/tool/option.py	(original)
+++ pypy/dist/pypy/tool/option.py	Mon Aug  7 23:59:21 2006
@@ -103,7 +103,7 @@
         kwds.get("uselibfile", False)):
         conf.objspace.uselibfile = True
     if getattr(cmdlineopt, "oldstyle", False) or kwds.get("oldstyle", False):
-        conf.objspace.oldstyle = True
+        conf.objspace.std.oldstyle = True
     if hasattr(cmdlineopt, "parser") and cmdlineopt.parser is not None:
         conf.objspace.parser = cmdlineopt.parser
     if kwds.get("compiler") is not None:



More information about the Pypy-commit mailing list