From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 293821381F3 for ; Tue, 3 Sep 2013 12:21:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D88ACE0F4A; Tue, 3 Sep 2013 12:21:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6CC95E0F4E for ; Tue, 3 Sep 2013 12:21:12 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 326BF33D3D7 for ; Tue, 3 Sep 2013 12:21:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id DC4C7E5463 for ; Tue, 3 Sep 2013 12:21:09 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1378210782.52a42a2e9edebf4b28fa5b354c048ae9e92c9350.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/db/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/db/distmap.py X-VCS-Directories: roverlay/db/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 52a42a2e9edebf4b28fa5b354c048ae9e92c9350 X-VCS-Branch: master Date: Tue, 3 Sep 2013 12:21:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 47c25229-6518-43e7-8c85-a66ae6efe570 X-Archives-Hash: 76a7c3e472ec6b1fecc80d4925d60f4e commit: 52a42a2e9edebf4b28fa5b354c048ae9e92c9350 Author: André Erdmann mailerd de> AuthorDate: Tue Sep 3 12:19:42 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Tue Sep 3 12:19:42 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=52a42a2e distmap: Dist{m,M}apException, camel case --- roverlay/db/distmap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roverlay/db/distmap.py b/roverlay/db/distmap.py index d400a75..ba0b29b 100644 --- a/roverlay/db/distmap.py +++ b/roverlay/db/distmap.py @@ -23,7 +23,7 @@ __all__ = [ 'DistMapInfo', 'FileDistMap', ] -class DistmapException ( Exception ): +class DistMapException ( Exception ): pass @@ -497,7 +497,7 @@ class _DistMapBase ( object ): self._file_added ( distfile ) return entry else: - raise DistmapException ( + raise DistMapException ( "volatile entry for {} does not exist!".format ( distfile ) ) # --- end of add_entry_for_volatile (...) ---