Growl fix

This commit is contained in:
Ruud
2011-10-08 13:43:59 +02:00
parent 577deb2453
commit 4aeb67197e
2 changed files with 1 additions and 3 deletions
@@ -63,7 +63,7 @@ class GrowlRegistrationPacket:
self.data += encoded
for default in self.defaults:
self.data += struct.pack("B", default)
self.checksum = md5()
self.checksum = md5_constructor()
self.checksum.update(self.data)
if self.password:
self.checksum.update(self.password)
@@ -1,5 +1,3 @@
from couchpotato.api import addApiView
from couchpotato.core.event import addEvent
from couchpotato.core.logger import CPLog
from couchpotato.core.notifications.base import Notification
from couchpotato.core.notifications.growl.growl import GROWL_UDP_PORT, \