From: Tony Mack <tmack@cs.princeton.edu>
Date: Wed, 24 Feb 2010 17:46:54 +0000 (+0000)
Subject: enable __str__()
X-Git-Tag: sfa-0.9-11~61
X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=9133202ba370575aa6b1db0cfb5ec0668c7ea5f8;p=sfa.git

enable __str__()
---

diff --git a/sfa/util/faults.py b/sfa/util/faults.py
index c8331535..045e443a 100644
--- a/sfa/util/faults.py
+++ b/sfa/util/faults.py
@@ -143,8 +143,8 @@ class RecordNotFound(SfaFault):
         self.value = value
         faultString = "Record not found: %(value)s" % locals()
         SfaFault.__init__(self, 102, faultString, extra)
-    #def __str__(self):
-    #    return repr(self.value)
+    def __str__(self):
+        return repr(self.value)
 
 class UnknownSfaType(SfaFault):
     def __init__(self, value, extra = None):