[Checkins] SVN: Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/ Backport of bugfix LP #795086.

Malthe Borch mborch at gmail.com
Wed Oct 12 04:25:44 EST 2011


Log message for revision 123061:
  Backport of bugfix LP #795086.

Changed:
  U   Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/doc/CHANGES.txt
  U   Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/events.py

-=-
Modified: Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/doc/CHANGES.txt
===================================================================
--- Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/doc/CHANGES.txt	2011-10-12 09:18:51 UTC (rev 123060)
+++ Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/doc/CHANGES.txt	2011-10-12 09:25:44 UTC (rev 123061)
@@ -4,8 +4,9 @@
 PluggableAuthService 1.6.6 (unreleased)
 ---------------------------------------
 
-- TBD
+- Launchpad #795086:  fixed creation of PropertiesUpdated event.
 
+
 PluggableAuthService 1.6.5 (2011-05-30)
 ---------------------------------------
 

Modified: Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/events.py
===================================================================
--- Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/events.py	2011-10-12 09:18:51 UTC (rev 123060)
+++ Products.PluggableAuthService/branches/1.6/Products/PluggableAuthService/events.py	2011-10-12 09:25:44 UTC (rev 123061)
@@ -33,7 +33,7 @@
     implements(IPropertiesUpdatedEvent)
 
     def __init__(self, principal, properties):
-        super(CredentialsUpdated, self).__init__(principal)
+        super(PropertiesUpdated, self).__init__(principal)
         self.properties=properties
 
 



More information about the checkins mailing list