From 0962b52497e279b916ff3cc9c8144f0441af3578 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Mon, 10 Dec 2012 23:00:38 -0500 Subject: [PATCH] fix AttributeError --- PLC/Method.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PLC/Method.py b/PLC/Method.py index 8445379b..7d3a627d 100644 --- a/PLC/Method.py +++ b/PLC/Method.py @@ -108,7 +108,7 @@ w caller = "" if self.caller: - caller = 'user: %s' % self.caller.name + caller = 'user: %s' % self.caller['email'] # Prepend caller and method name to expected faults fault.faultString = caller + ": " + self.name + ": " + fault.faultString -- 2.47.0