summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Harring <ferringb@gentoo.org>2005-04-19 07:14:17 +0000
committerBrian Harring <ferringb@gentoo.org>2005-04-19 07:14:17 +0000
commit79a8c6f5847510fac3bcbdeebe850ad7a5e34c1b (patch)
treef6597b8f6a29e1ed66166f6a843fbe221c91eb0a
parentbin/ebuild: Added a missing import of portage_util. (diff)
downloadportage-cvs-79a8c6f5847510fac3bcbdeebe850ad7a5e34c1b.tar.gz
portage-cvs-79a8c6f5847510fac3bcbdeebe850ad7a5e34c1b.tar.bz2
portage-cvs-79a8c6f5847510fac3bcbdeebe850ad7a5e34c1b.zip
swegener strikes again... (s:beginswith:startswith:)
-rw-r--r--ChangeLog5
-rw-r--r--pym/portage_db_flat.py6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 0278bba..1206b83 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,12 +1,15 @@
# ChangeLog for Portage; the Gentoo Linux ports system
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Id: ChangeLog,v 1.796.2.96 2005/04/19 05:00:22 jstubbs Exp $
+# $Id: ChangeLog,v 1.796.2.97 2005/04/19 07:14:17 ferringb Exp $
MAJOR CHANGES in 2.0.51:
1. /var/cache/edb/virtuals is no longer used at all. It's calculated now.
2. /var/cache/edb/world is now /var/lib/portage/world.
3. /etc/portage/profile/virtuals is _USER_ configs only.
+ 19 Apr 2005; Brian Harring <ferringb@gentoo.org> pym/portage_db_flat.py:
+ Correction for string method name, again, danke to swegener.
+
19 Apr 2005; Jason Stubbs <jstubbs@gentoo.org> bin/ebuild: Added a missing
import of portage_util.
diff --git a/pym/portage_db_flat.py b/pym/portage_db_flat.py
index 33c0a0d..0d1efe1 100644
--- a/pym/portage_db_flat.py
+++ b/pym/portage_db_flat.py
@@ -1,7 +1,7 @@
# Copyright 2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/pym/Attic/portage_db_flat.py,v 1.13.2.5 2005/01/28 08:01:21 ferringb Exp $
-cvs_id_string="$Id: portage_db_flat.py,v 1.13.2.5 2005/01/28 08:01:21 ferringb Exp $"[5:-2]
+# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/pym/Attic/portage_db_flat.py,v 1.13.2.6 2005/04/19 07:14:17 ferringb Exp $
+cvs_id_string="$Id: portage_db_flat.py,v 1.13.2.6 2005/04/19 07:14:17 ferringb Exp $"[5:-2]
import types
import os
@@ -38,7 +38,7 @@ class database(portage_db_template.database):
# return portage.listdir(self.fullpath,filesonly=1)
mykeys = []
for x in os.listdir(self.fullpath):
- if os.path.isfile(self.fullpath+x) and not x.beginswith(".update."):
+ if os.path.isfile(self.fullpath+x) and not x.startswith(".update."):
mykeys += [x]
return mykeys