Repair "module has no attribute xxx" error msg; bug introduced when
switching from tp_getattr to tp_getattro.
diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c
index 6628fe9..7df5ce0 100644
--- a/Objects/moduleobject.c
+++ b/Objects/moduleobject.c
@@ -180,7 +180,7 @@
 		}
 		PyErr_Format(PyExc_AttributeError,
 			     "'%.50s' module has no attribute '%.400s'",
-			     modname, name);
+			     modname, sname);
 	}
 	else
 		Py_INCREF(res);