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 C802D13888F for ; Sat, 10 Oct 2015 12:22:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A633AE07DB; Sat, 10 Oct 2015 12:22:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46FBAE07DB for ; Sat, 10 Oct 2015 12:22:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5F521340961 for ; Sat, 10 Oct 2015 12:22:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 037A027A for ; Sat, 10 Oct 2015 12:22:41 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1444480102.4476229290dcd40ef1dd7320b84ea86e5e1b8fa9.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Interpret.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 4476229290dcd40ef1dd7320b84ea86e5e1b8fa9 X-VCS-Branch: master Date: Sat, 10 Oct 2015 12:22:41 +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: 43a756a3-8399-4189-98cd-eb3fe0103031 X-Archives-Hash: c8199d453d250124bf7ed6b349b52397 commit: 4476229290dcd40ef1dd7320b84ea86e5e1b8fa9 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Oct 10 12:28:22 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Oct 10 12:28:22 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=44762292 grs/Interpret.py: fix minor errors. grs/Interpret.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/grs/Interpret.py b/grs/Interpret.py index a42400d..3e2c408 100644 --- a/grs/Interpret.py +++ b/grs/Interpret.py @@ -94,10 +94,9 @@ class Interpret(Daemon): _lo.log(_line) return try: - func(*args) + func(*args) except Exception as excpt: err = excpt - pass else: err = 'Number of parameters incorrect.'