Fix NameId exception
[cascardo/ipsilon.git] / ipsilon / providers / saml2 / provider.py
index b6ed4bf..c44c8b8 100755 (executable)
@@ -33,8 +33,8 @@ class InvalidProviderId(ProviderException):
 
 class NameIdNotAllowed(Exception):
 
 
 class NameIdNotAllowed(Exception):
 
-    def __init__(self):
-        message = 'The specified Name ID is not allowed'
+    def __init__(self, id):
+        message = 'Name ID [%s] is not allowed' % id
         super(NameIdNotAllowed, self).__init__(message)
         self.message = message
 
         super(NameIdNotAllowed, self).__init__(message)
         self.message = message