@@ -149,7 +149,7 @@ def __init__(self, *args, **kwds):
149149 """
150150 self .multitonKey = None
151151
152- def sendNotification (self , notificationName , body = None , noteType = None ):
152+ def sendNotification (self , notificationName , body = None , type = None ):
153153 """
154154 Create and send an C{INotification}.
155155
@@ -159,10 +159,10 @@ def sendNotification(self, notificationName, body=None, noteType=None):
159159
160160 @param notificationName: the name of the notification to send
161161 @param body: the body of the notification (optional)
162- @param noteType : the type of the notification (optional)
162+ @param type : the type of the notification (optional)
163163 """
164164 if self .facade :
165- self .facade .sendNotification (notificationName , body , noteType )
165+ self .facade .sendNotification (notificationName , body , type )
166166
167167 def initializeNotifier (self , key ):
168168 """
@@ -226,13 +226,13 @@ class Notification(puremvc.interfaces.INotification):
226226 @see: L{Observer<puremvc.patterns.observer.Observer>}
227227 """
228228
229- def __init__ (self , name , body = None , noteType = None ):
229+ def __init__ (self , name , body = None , type = None ):
230230 """
231231 Constructor.
232232
233233 @param name: name of the C{Notification} instance. (required)
234234 @param body: the C{Notification} body. (optional)
235- @param noteType : the type of the C{Notification} (optional)
235+ @param type : the type of the C{Notification} (optional)
236236 """
237237
238238 """The name of the notification instance"""
@@ -242,7 +242,7 @@ def __init__(self, name, body=None, noteType=None):
242242 self .body = body
243243
244244 """The type of the notification instance"""
245- self .type = noteType
245+ self .type = type
246246
247247 def __repr__ (self ):
248248 """
0 commit comments