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 72EFA138200 for ; Thu, 25 Apr 2013 16:44:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBE18E0B7A; Thu, 25 Apr 2013 16:44:21 +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 7B14DE0B77 for ; Thu, 25 Apr 2013 16:44:21 +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 8E23333DF49 for ; Thu, 25 Apr 2013 16:44:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id EAEDCE4408 for ; Thu, 25 Apr 2013 16:44:17 +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: <1366675681.9f2e075f08aba1e01b534d696b9297410ebacc1a.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/packagerules/parser/context/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/packagerules/parser/context/base.py X-VCS-Directories: roverlay/packagerules/parser/context/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 9f2e075f08aba1e01b534d696b9297410ebacc1a X-VCS-Branch: master Date: Thu, 25 Apr 2013 16:44:17 +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: 39923630-11e3-40c4-993b-19f24c00880f X-Archives-Hash: 987660b487852f7c5df9249c8541fffe commit: 9f2e075f08aba1e01b534d696b9297410ebacc1a Author: André Erdmann mailerd de> AuthorDate: Tue Apr 23 00:08:01 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Tue Apr 23 00:08:01 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=9f2e075f packagerules/parser/context: fix InvalidContext BaseContext.InvalidContext should derive from BaseException. --- roverlay/packagerules/parser/context/base.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/roverlay/packagerules/parser/context/base.py b/roverlay/packagerules/parser/context/base.py index 3abb6e8..6c18faa 100644 --- a/roverlay/packagerules/parser/context/base.py +++ b/roverlay/packagerules/parser/context/base.py @@ -6,7 +6,7 @@ class BaseContext ( object ): - class InvalidContext ( object ): + class InvalidContext ( Exception ): pass # --- end of InvalidContext ---