summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2012-04-30 10:15:36 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2012-04-30 10:15:36 -0400
commitaa1aa1ad410c640ff22260b9c6bf3c36be98ff8e (patch)
tree06b405862e36420639291c3e584ef38576f48941
parentb4b8977814071bc0d624524404d08ff632b38d55 (diff)
Fix a typo in a comment.
-rw-r--r--django/utils/_os.py2
1 files changed, 1 insertions, 1 deletions
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