Skip to content
This repository has been archived by the owner on Jul 10, 2021. It is now read-only.

Commit

Permalink
Disable icon temporarily and adjust the debug print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
kfdm committed Aug 18, 2009
1 parent 5552906 commit eec8ddc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions local.py
Expand Up @@ -3,7 +3,7 @@

class GNTPRegister(gntp.GNTPRegister):
def send(self):
print 'Sending Registration'
print 'Sending Local Registration'
growl = Growl.GrowlNotifier(
applicationName = self.headers['Application-Name'],
notifications = self.notifications,
Expand All @@ -13,7 +13,7 @@ def send(self):

class GNTPNotice(gntp.GNTPNotice):
def send(self):
print 'Sending Notification'
print 'Sending Local Notification'
growl = Growl.GrowlNotifier(
applicationName = self.headers['Application-Name'],
notifications = [self.headers['Notification-Name']]
Expand All @@ -32,5 +32,4 @@ def send(self):
noteType = self.headers['Notification-Name'],
title = self.headers['Notification-Title'],
description=self.headers['Notification-Text'],
icon=noticeIcon
)

0 comments on commit eec8ddc

Please sign in to comment.