From b06432a6d81d9a96e9bd2fe71878aa47b734cda6 Mon Sep 17 00:00:00 2001 From: Anna Date: Mon, 12 Apr 2010 17:13:13 -0400 Subject: [PATCH] Updated a stub function to be more stubby --- mytwitter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mytwitter.py b/mytwitter.py index e692177..0efff57 100755 --- a/mytwitter.py +++ b/mytwitter.py @@ -395,8 +395,9 @@ class TweetBox(gtk.VBox): def on_url_clicked(self, widget): # fixme: for now, hard code firefox, since that's what I use # Eventually make this configgable + # fixme: this doesn't work at all right now... figure out how to make this signal happen print 'debug: on_url_clicked()' - subprocess.Popen('/usr/bin/firefox ' + self.text.get_current_uri(), shell=False).pid +# subprocess.Popen('/usr/bin/firefox ' + self.text.get_current_uri(), shell=False).pid # end class TweetBox