fix bug in ConnectionKeyGIDMismatch
authorTony Mack <tmack@cs.princeton.edu>
Wed, 15 Apr 2009 01:29:07 +0000 (01:29 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Wed, 15 Apr 2009 01:29:07 +0000 (01:29 +0000)
geni/util/excep.py

index c15cedb..6d11de3 100644 (file)
@@ -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)