Fixed a regression on Python < 2.6 introduced in [12552].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12555 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
d30ff77602
commit
d47b9ec2c7
|
@ -181,7 +181,7 @@ class FileStoragePathParsing(TestCase):
|
||||||
# Before 2.6, a leading dot was treated as an extension, and so
|
# Before 2.6, a leading dot was treated as an extension, and so
|
||||||
# underscore gets added to beginning instead of end.
|
# underscore gets added to beginning instead of end.
|
||||||
if sys.version_info < (2, 6):
|
if sys.version_info < (2, 6):
|
||||||
self.assert_(os.path.exists(os.path.join(self.storage_dir, 'dotted.path/_.test')))
|
self.assert_(os.path.exists(os.path.join(self.storage_dir, 'dotted.path/_1.test')))
|
||||||
else:
|
else:
|
||||||
self.assert_(os.path.exists(os.path.join(self.storage_dir, 'dotted.path/.test_1')))
|
self.assert_(os.path.exists(os.path.join(self.storage_dir, 'dotted.path/.test_1')))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue