Commit 31c49144 by Timothée Peignier

Fix formatting.

parent 073fbd73
...@@ -24,7 +24,7 @@ class Package(object): ...@@ -24,7 +24,7 @@ class Package(object):
paths = [] paths = []
for pattern in self.config.get('source_filenames', []): for pattern in self.config.get('source_filenames', []):
for path in glob(pattern): for path in glob(pattern):
if not path in paths and find(path): if path not in paths and find(path):
paths.append(str(path)) paths.append(str(path))
self._sources = paths self._sources = paths
return self._sources return self._sources
......
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