From aa1aa1ad410c640ff22260b9c6bf3c36be98ff8e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 30 Apr 2012 10:15:36 -0400 Subject: [PATCH] Fix a typo in a comment. --- django/utils/_os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/_os.py b/django/utils/_os.py index ad4efb3264..884689fefc 100644 --- a/django/utils/_os.py +++ b/django/utils/_os.py @@ -61,7 +61,7 @@ def rmtree_errorhandler(func, path, exc_info): continue without problems. """ exctype, value = exc_info[:2] - # lookin for a windows error + # looking for a windows error if exctype is not WindowsError or 'Access is denied' not in str(value): raise # file type should currently be read only