Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: grs/
Date: Sat, 10 Oct 2015 12:22:46
Message-Id: 1444480102.4476229290dcd40ef1dd7320b84ea86e5e1b8fa9.blueness@gentoo
1 commit: 4476229290dcd40ef1dd7320b84ea86e5e1b8fa9
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 10 12:28:22 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 12:28:22 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=44762292
7
8 grs/Interpret.py: fix minor errors.
9
10 grs/Interpret.py | 3 +--
11 1 file changed, 1 insertion(+), 2 deletions(-)
12
13 diff --git a/grs/Interpret.py b/grs/Interpret.py
14 index a42400d..3e2c408 100644
15 --- a/grs/Interpret.py
16 +++ b/grs/Interpret.py
17 @@ -94,10 +94,9 @@ class Interpret(Daemon):
18 _lo.log(_line)
19 return
20 try:
21 - func(*args)
22 + func(*args)
23 except Exception as excpt:
24 err = excpt
25 - pass
26 else:
27 err = 'Number of parameters incorrect.'