Commit 99c95f02 authored by Michael W. Hudson's avatar Michael W. Hudson

A. Lloyd Flanagan pointed out a spelling error on c.l.py.

parent e9cb3af9
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment