Skip to content

Commit

Permalink
Merge pull request #8 from palfrey/louie-version-fix
Browse files Browse the repository at this point in the history
Louie version fix
  • Loading branch information
unintended committed Sep 21, 2019
2 parents f857cfa + 000fd4c commit 8c1fba0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coherence/backends/fs_storage.py
Expand Up @@ -646,7 +646,7 @@ def walk(self, path, parent=None, ignore_file_pattern=''):
container = containers.pop()
try:
self.debug('adding %r', container.location)
for child in container.location.children():
for child in sorted(container.location.children()):
if ignore_file_pattern.match(child.basename()) != None:
continue
new_container = self.append(child.path, container)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -14,7 +14,7 @@
'ConfigObj >= 4.3',
'Twisted >= 14.0',
'zope.interface',
'louie',
'louie < 2',
'livestreamer',
'lxml',
'python-dateutil',
Expand Down

0 comments on commit 8c1fba0

Please sign in to comment.