summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-12-02 00:49:15 +0000
committerJannis Leidel <jannis@leidel.info>2010-12-02 00:49:15 +0000
commitfb391b8b98e9e6a3dc89cfb43892f96cf70d199c (patch)
tree7cc734eda9eb96c4819a53d57cbfa4a530ed54e2
parent7421f7269ea8013b015d69bc8c3ba24d2ab6a5df (diff)
Fixed #8217 -- Correctly sort files in FilePathFields on older Python versions. Thanks, bernd and davidb.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14772 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/forms/fields.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/forms/fields.py b/django/forms/fields.py
index 16c9218549..a0b559319b 100644
--- a/django/forms/fields.py
+++ b/django/forms/fields.py
@@ -867,14 +867,14 @@ class FilePathField(ChoiceField):
self.match_re = re.compile(self.match)
if recursive:
- for root, dirs, files in os.walk(self.path):
+ for root, dirs, files in sorted(os.walk(self.path)):
for f in files:
if self.match is None or self.match_re.search(f):
f = os.path.join(root, f)
self.choices.append((f, f.replace(path, "", 1)))
else:
try:
- for f in os.listdir(self.path):
+ for f in sorted(os.listdir(self.path)):
full_file = os.path.join(self.path, f)
if os.path.isfile(full_file) and (self.match is None or self.match_re.search(f)):
self.choices.append((full_file, f))