From 53b94f53174bf915aff6dd2c1b725ddece152ac6 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Wed, 15 Apr 2009 01:29:07 +0000 Subject: [PATCH] fix bug in ConnectionKeyGIDMismatch --- geni/util/excep.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geni/util/excep.py b/geni/util/excep.py index c15cedb4..6d11de3b 100644 --- a/geni/util/excep.py +++ b/geni/util/excep.py @@ -123,7 +123,7 @@ class ConnectionKeyGIDMismatch(GeniFault): def __init__(self, value, extra = None): self.value = value faultString = "Connection Key GID mismatch: %(value)s" % locals() - GeniFault.__init__(self, 102, faultstring, extra) + GeniFault.__init__(self, 102, faultString, extra) def __str__(self): return repr(self.value) @@ -131,7 +131,7 @@ class MissingCallerGID(GeniFault): def __init__(self, value, extra = None): self.value = value faultString = "Missing Caller GID: %(value)s" % locals() - GeniFault.__init__(self, 102, faultstring, extra) + GeniFault.__init__(self, 102, faultString, extra) def __str__(self): return repr(self.value) -- 2.43.0