From 7f245c309791a4de3b7ffdde7992209c2076a620 Mon Sep 17 00:00:00 2001 From: Quentin Smith Date: Mon, 2 Mar 2009 21:58:11 -0500 Subject: [PATCH] Send messages 'remotely' (to localhost), to work around growl bug #267767 --- barn-growl/barn-growl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barn-growl/barn-growl.py b/barn-growl/barn-growl.py index 2033f22..e36f719 100755 --- a/barn-growl/barn-growl.py +++ b/barn-growl/barn-growl.py @@ -50,7 +50,7 @@ class Notifier(AbstractConsumer): print (id, header) print message if self.usegrowl: - growlnotify = ['growlnotify', '-a', 'MacZephyr', '-n', 'zephyr', '-d', id, '-t', header] + growlnotify = ['growlnotify', '-H', 'localhost', '-a', 'MacZephyr', '-n', 'zephyr', '-d', id, '-t', header] g = subprocess.Popen(growlnotify, stdin=subprocess.PIPE) g.stdin.write(message) g.stdin.close() -- 2.44.0