summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-12-20 15:33:30 +0000
committerZac Medico <zmedico@gentoo.org>2007-12-20 15:33:30 +0000
commit5efdd6b3d4b870896484b0ea0f05d0d406727c98 (patch)
tree84525f2ace8400f5b8ba6fdfb3437162a4603df0
parent0d0b4a1ec60691a7478b4e8e17819ac54a8586ae (diff)
downloadportage-5efdd6b3d4b870896484b0ea0f05d0d406727c98.tar.gz
portage-5efdd6b3d4b870896484b0ea0f05d0d406727c98.tar.bz2
portage-5efdd6b3d4b870896484b0ea0f05d0d406727c98.zip
Fix broken indentation in portdbapi.cp_all().
svn path=/main/branches/2.1.2/; revision=8995
-rw-r--r--pym/portage.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 571766c9f..cb69a9c56 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -7166,9 +7166,9 @@ class portdbapi(dbapi):
if not self._category_re.match(x) or \
self._non_category_dirs.match(x):
continue
- for oroot in self.porttrees:
- for y in listdir(oroot+"/"+x,EmptyOnError=1,ignorecvs=1,dirsonly=1):
- d[x+"/"+y] = None
+ for oroot in self.porttrees:
+ for y in listdir(oroot+"/"+x,EmptyOnError=1,ignorecvs=1,dirsonly=1):
+ d[x+"/"+y] = None
l = d.keys()
l.sort()
return l