From ff5b2c48fca8ff34134d981f8d1ac207b1d5e2a2 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Mon, 24 Aug 2009 12:28:37 -0400 Subject: Fix to work again with Firefox The version of Colin's Chromium patch I applied was outdated and had an obvious left-over in the Xulrunner codepaths that made things no longer with with Firefox and Epiphany. Fix. --- git-bz | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-bz b/git-bz index 44d6fc6..751af8d 100755 --- a/git-bz +++ b/git-bz @@ -565,7 +565,7 @@ def get_bugzilla_cookies_ff3(host): if not os.path.exists(cookies_sqlite): raise CookieError("%s doesn't exist." % cookies_sqlite) - return get_cookies_from_sqlite_xulrunner(host, cookies_sqlite, "Firefox", "moz_cookies") + return get_cookies_from_sqlite_xulrunner(host, cookies_sqlite, "Firefox") def get_bugzilla_cookies_epy(host): ff_dir = os.path.expanduser('~/.gnome2/epiphany/mozilla/epiphany') @@ -573,7 +573,7 @@ def get_bugzilla_cookies_epy(host): if not os.path.exists(cookies_sqlite): raise CookieError("%s doesn't exist" % cookies_sqlite) - return get_cookies_from_sqlite_xulrunner(host, cookies_sqlite, "Epiphany", "moz_cookies") + return get_cookies_from_sqlite_xulrunner(host, cookies_sqlite, "Epiphany") def get_bugzilla_cookies_chromium(host): config_dir = os.path.expanduser('~/.config/chromium/Default') -- cgit