1
0
mirror of https://github.com/django/django.git synced 2025-10-24 22:26:08 +00:00

[1.8.x] Fixed typos in code comments.

Backport of 039465a6a7 from master
This commit is contained in:
Adam Taylor
2015-01-20 07:54:12 -07:00
committed by Tim Graham
parent 90d9bf5ba4
commit 45aaced91e
26 changed files with 28 additions and 28 deletions

View File

@@ -187,7 +187,7 @@ class FileUploadTests(TestCase):
# trying such an attack.
scary_file_names = [
"/tmp/hax0rd.txt", # Absolute path, *nix-style.
"C:\\Windows\\hax0rd.txt", # Absolute path, win-syle.
"C:\\Windows\\hax0rd.txt", # Absolute path, win-style.
"C:/Windows/hax0rd.txt", # Absolute path, broken-style.
"\\tmp\\hax0rd.txt", # Absolute path, broken in a different way.
"/tmp\\hax0rd.txt", # Absolute path, broken by mixing.