bumping version to 0.29-1
[certmaster.git] / certmaster / CommonErrors.py
index c76cb3d..2dfb814 100644 (file)
@@ -60,10 +60,10 @@ def canIgnoreSocketError(e):
 
     return False
 
-class Func_Client_Exception(Exception):
+# FIXME: is anything using this?  remove underscores
+class CertMaster_Client_Exception(Exception):
     def __init__(self, value=None):
         Exception.__init__(self)
         self.value = value
     def __str__(self):
         return "%s" %(self.value,)
-