[pypy-svn] r63793 - pypy/trunk/pypy/rpython/tool

afa at codespeak.net afa at codespeak.net
Tue Apr 7 15:31:36 CEST 2009


Author: afa
Date: Tue Apr  7 15:31:36 2009
New Revision: 63793

Modified:
   pypy/trunk/pypy/rpython/tool/rffi_platform.py
Log:
Fix a typo


Modified: pypy/trunk/pypy/rpython/tool/rffi_platform.py
==============================================================================
--- pypy/trunk/pypy/rpython/tool/rffi_platform.py	(original)
+++ pypy/trunk/pypy/rpython/tool/rffi_platform.py	Tue Apr  7 15:31:36 2009
@@ -162,7 +162,7 @@
     """
     for attr in ['_includes_', '_libraries_', '_sources_', '_library_dirs_',
                  '_include_dirs_', '_header_']:
-        assert not hasattr(CConfig, attr), "Found legacy attribut %s on CConfig" % (attr,)
+        assert not hasattr(CConfig, attr), "Found legacy attribute %s on CConfig" % (attr,)
     entries = []
     for key in dir(CConfig):
         value = getattr(CConfig, key)



More information about the Pypy-commit mailing list