projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2e92a1b
)
sigh, or, not and
author
Alec Warner
<antarus@gentoo.org>
Sun, 9 Sep 2007 00:33:57 +0000
(
00:33
-0000)
committer
Alec Warner
<antarus@gentoo.org>
Sun, 9 Sep 2007 00:33:57 +0000
(
00:33
-0000)
svn path=/main/trunk/; revision=7765
pym/portage/env/loaders.py
patch
|
blob
|
history
diff --git
a/pym/portage/env/loaders.py
b/pym/portage/env/loaders.py
index 1d0ca01aac4bba924601e32222feabb7e6724ad3..0f376a33c480c3a2e3e23d265c5cfb0d5883e9c4 100644
(file)
--- a/
pym/portage/env/loaders.py
+++ b/
pym/portage/env/loaders.py
@@
-41,7
+41,7
@@
def RecursiveFileLoader(filename):
for root, dirs, files in os.walk(filename):
if 'CVS' in dirs:
dirs.remove('CVS')
- files = [f for f in files if not f.startswith('.')
and
not f.endswith('~')]
+ files = [f for f in files if not f.startswith('.')
or
not f.endswith('~')]
for f in files:
yield os.path.join(root, f)
else: