From 976249be74462b5171703e0f57484e491f58f766 Mon Sep 17 00:00:00 2001
From: "Michael W. Hudson" <mwh@python.net>
Date: Thu, 16 Jan 2003 15:39:07 +0000
Subject: A. Lloyd Flanagan pointed out a spelling error on c.l.py.

---
 Python/compile.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Python/compile.c b/Python/compile.c
index 5784780..49e57d1 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -995,7 +995,7 @@ none_assignment_check(struct compiling *c, char *name, int assigning)
 	if (name[0] == 'N' && strcmp(name, "None") == 0) {
 		char *msg;
 		if (assigning)
-			msg = "assigment to None";
+			msg = "assignment to None";
 		else
 			msg = "deleting None";
 		if (issue_warning(msg, c->c_filename, c->c_lineno) < 0) {
-- 
cgit v0.12