projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd2593c
)
Fix a typo in the _non_category_dirs regex. (trunk r8997)
author
Zac Medico
<zmedico@gentoo.org>
Thu, 20 Dec 2007 17:02:19 +0000
(17:02 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 20 Dec 2007 17:02:19 +0000
(17:02 -0000)
svn path=/main/branches/2.1.2/; revision=8998
pym/portage.py
patch
|
blob
|
history
diff --git
a/pym/portage.py
b/pym/portage.py
index abe0ebb737c05c15648729869884de1a46e4ae52..7dfa17413e155a12bee338fcfd4bd25e0c7237d9 100644
(file)
--- a/
pym/portage.py
+++ b/
pym/portage.py
@@
-6703,7
+6703,7
@@
def close_portdbapi_caches():
class portdbapi(dbapi):
"""this tree will scan a portage directory located at root (passed to init)"""
portdbapi_instances = []
- _non_category_dirs = re.compile(r'
(%s)^
$' % \
+ _non_category_dirs = re.compile(r'
^(%s)
$' % \
"|".join(["eclass", "profiles", "scripts"]))
def __init__(self,porttree_root,mysettings=None):
portdbapi.portdbapi_instances.append(self)