Gentoo Archives: gentoo-commits

From: "André Erdmann" <dywi@×××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/db/
Date: Tue, 03 Sep 2013 12:21:16
Message-Id: 1378210782.52a42a2e9edebf4b28fa5b354c048ae9e92c9350.dywi@gentoo
1 commit: 52a42a2e9edebf4b28fa5b354c048ae9e92c9350
2 Author: André Erdmann <dywi <AT> mailerd <DOT> de>
3 AuthorDate: Tue Sep 3 12:19:42 2013 +0000
4 Commit: André Erdmann <dywi <AT> mailerd <DOT> de>
5 CommitDate: Tue Sep 3 12:19:42 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=52a42a2e
7
8 distmap: Dist{m,M}apException, camel case
9
10 ---
11 roverlay/db/distmap.py | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/roverlay/db/distmap.py b/roverlay/db/distmap.py
15 index d400a75..ba0b29b 100644
16 --- a/roverlay/db/distmap.py
17 +++ b/roverlay/db/distmap.py
18 @@ -23,7 +23,7 @@ __all__ = [ 'DistMapInfo', 'FileDistMap', ]
19
20
21
22 -class DistmapException ( Exception ):
23 +class DistMapException ( Exception ):
24 pass
25
26
27 @@ -497,7 +497,7 @@ class _DistMapBase ( object ):
28 self._file_added ( distfile )
29 return entry
30 else:
31 - raise DistmapException (
32 + raise DistMapException (
33 "volatile entry for {} does not exist!".format ( distfile )
34 )
35 # --- end of add_entry_for_volatile (...) ---