diff options
author | Guido van Rossum <guido@python.org> | 1998-04-28 16:01:13 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-28 16:01:13 +0000 |
commit | 53117ae82aaa7c274ff0d26e7466e6d5ee4e8fb5 (patch) | |
tree | 90155f8367d760b520d5f1cedb70db3e809b24c8 /Lib/tabnanny.py | |
parent | b86ba124eab06ab9b132647bee4c00c13269e185 (diff) | |
download | cpython-git-53117ae82aaa7c274ff0d26e7466e6d5ee4e8fb5.tar.gz |
typo in error message (fname vs. file).
(Jack)
Diffstat (limited to 'Lib/tabnanny.py')
-rwxr-xr-x | Lib/tabnanny.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tabnanny.py b/Lib/tabnanny.py index a6cb94b0ce..6dca8af487 100755 --- a/Lib/tabnanny.py +++ b/Lib/tabnanny.py @@ -66,7 +66,7 @@ def check(file): tokenize.tokenize(f.readline, tokeneater) except tokenize.TokenError, msg: - print "%s: Token Error: %s" % (`fname`, str(msg)) + print "%s: Token Error: %s" % (`file`, str(msg)) return except NannyNag, nag: |