diff options
author | Owen W. Taylor <otaylor@fishsoup.net> | 2009-08-24 12:28:37 -0400 |
---|---|---|
committer | Owen W. Taylor <otaylor@fishsoup.net> | 2009-08-24 12:28:37 -0400 |
commit | ff5b2c48fca8ff34134d981f8d1ac207b1d5e2a2 (patch) | |
tree | 17613ed8f251f42662414ff0de218e39f9e61958 | |
parent | c665b1de6d182e9a060dfd54edaf87f1d6b88fd7 (diff) |
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.
-rwxr-xr-x | git-bz | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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') |