commit: 4476229290dcd40ef1dd7320b84ea86e5e1b8fa9
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 10 12:28:22 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> 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.'