From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-commits+bounces-339720-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1QF2Tg-0003aw-23
	for garchives@archives.gentoo.org; Wed, 27 Apr 2011 11:00:16 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4F3E11C0D0;
	Wed, 27 Apr 2011 10:58:44 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id 1F8511C0B0
	for <gentoo-commits@lists.gentoo.org>; Wed, 27 Apr 2011 10:58:43 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id B2C9E1BC01C
	for <gentoo-commits@lists.gentoo.org>; Wed, 27 Apr 2011 10:58:43 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id 20F3380508
	for <gentoo-commits@lists.gentoo.org>; Wed, 27 Apr 2011 10:58:43 +0000 (UTC)
From: "Brian Dolbec" <brian.dolbec@gmail.com>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" <brian.dolbec@gmail.com>
Message-ID: <336d0c4b675dff698455cc9df91b71de78347fa7.dol-sen@gentoo>
Subject: [gentoo-commits] proj/layman:master commit in: layman/
X-VCS-Repository: proj/layman
X-VCS-Files: layman/dbbase.py
X-VCS-Directories: layman/
X-VCS-Committer: dol-sen
X-VCS-Committer-Name: Brian Dolbec
X-VCS-Revision: 336d0c4b675dff698455cc9df91b71de78347fa7
Date: Wed, 27 Apr 2011 10:58:43 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: quoted-printable
X-Archives-Salt: 
X-Archives-Hash: 290a482b32c83b2c91b740480da4efc7

commit:     336d0c4b675dff698455cc9df91b71de78347fa7
Author:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
AuthorDate: Thu Feb 24 07:17:06 2011 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Sun Mar 27 02:39:13 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Dproj/layman.git;a=3D=
commit;h=3D336d0c4b

make add_from_dict() private.

---
 layman/dbbase.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/layman/dbbase.py b/layman/dbbase.py
index 7b0a26a..776a90f 100644
--- a/layman/dbbase.py
+++ b/layman/dbbase.py
@@ -168,12 +168,12 @@ class DbBase:
             self.output.info("DbBase: add_new() from_dict")
             if isinstance(from_dict, dict):
                 from_dict =3D [from_dict]
-            self.add_from_dict(from_dict)
+            self._add_from_dict(from_dict)
=20
         return
=20
=20
-    def add_from_dict(self, overlays=3DNone):
+    def _add_from_dict(self, overlays=3DNone):
         """Add a new overlay from a list of dictionary values
         """
         self.output.info("DbBase: add_from_dict()")