Commit 6695e537 authored by Tarek Ziade's avatar Tarek Ziade

we want any(), not all()

--HG--
branch : distribute
extra : rebase_source : c740917424bbc5efdfb91360399f1f17a09ea3a1
parent ec003ad4
......@@ -209,7 +209,7 @@ class DirectorySandbox(AbstractSandbox):
def _exempted(self, filepath):
exception_matches = map(filepath.startswith, self._exceptions)
return False not in exception_matches
return True in exception_matches
def _remap_input(self,operation,path,*args,**kw):
"""Called for path inputs"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment