Browse Source

Sort dirlisting

pull/84/head
Ruud 13 years ago
parent
commit
eb03c65768
  1. 2
      couchpotato/core/plugins/browser/main.py

2
couchpotato/core/plugins/browser/main.py

@ -38,7 +38,7 @@ class FileBrowser(Plugin):
if os.path.isdir(p) and ((self.is_hidden(p) and bool(int(show_hidden))) or not self.is_hidden(p)):
dirs.append(p + os.path.sep)
return dirs
return sorted(dirs)
def getFiles(self):
pass

Loading…
Cancel
Save