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 4A2B71381F3 for ; Sat, 22 Jun 2013 15:14:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA7ADE0A9F; Sat, 22 Jun 2013 15:14:30 +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 4EBBDE0A53 for ; Sat, 22 Jun 2013 15:14:30 +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 548B633DA22 for ; Sat, 22 Jun 2013 15:14:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B40E4E5464 for ; Sat, 22 Jun 2013 15:14:26 +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: <1371896378.b3c06fe525a85dbd2820c14a47cd7628739fa78b.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:gsoc13/next commit in: roverlay/overlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/overlay/root.py X-VCS-Directories: roverlay/overlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: b3c06fe525a85dbd2820c14a47cd7628739fa78b X-VCS-Branch: gsoc13/next Date: Sat, 22 Jun 2013 15:14:26 +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: 6a1af683-693b-481e-91f2-0b891d1a1eee X-Archives-Hash: e779119e71945ec9496c510064286ca9 Message-ID: <20130622151426.iAER0KSb0jxEVgjGPyZOpnX47CcehlVC5OABswpalJ0@z> commit: b3c06fe525a85dbd2820c14a47cd7628739fa78b Author: André Erdmann mailerd de> AuthorDate: Sat Jun 22 10:19:38 2013 +0000 Commit: André Erdmann mailerd de> CommitDate: Sat Jun 22 10:19:38 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=b3c06fe5 overlay, scan(): don't filter all exceptions --- roverlay/overlay/root.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roverlay/overlay/root.py b/roverlay/overlay/root.py index a3b02f1..35ab5ad 100644 --- a/roverlay/overlay/root.py +++ b/roverlay/overlay/root.py @@ -682,6 +682,8 @@ class Overlay ( object ): for cat in scan_categories(): try: cat.scan ( **kw ) + except ( RuntimeError, SystemError, KeyboardInterrupt, ): + raise except Exception as e: self.logger.exception ( e ) # --- end of scan (...) ---