From 9324f06a3c494c48431c02cbeff5bdb80c1af0f0 Mon Sep 17 00:00:00 2001 From: facetoe Date: Sun, 1 Feb 2015 09:31:13 +0800 Subject: [PATCH] Added keyring_backend variable. --- i3pystatus/github.py | 1 + i3pystatus/mail/imap.py | 1 + i3pystatus/modsde.py | 1 + i3pystatus/pyload.py | 1 + i3pystatus/reddit.py | 1 + i3pystatus/whosonlocation.py | 1 + 6 files changed, 6 insertions(+) diff --git a/i3pystatus/github.py b/i3pystatus/github.py index a40c306..b5196c3 100644 --- a/i3pystatus/github.py +++ b/i3pystatus/github.py @@ -23,6 +23,7 @@ class Github(IntervalModule): password = '' format = '{unread}' interval = 600 + keyring_backend = None on_leftclick = 'open_github' diff --git a/i3pystatus/mail/imap.py b/i3pystatus/mail/imap.py index 94f3b20..2ae58d9 100644 --- a/i3pystatus/mail/imap.py +++ b/i3pystatus/mail/imap.py @@ -20,6 +20,7 @@ class IMAP(Backend): "mailbox", ) required = ("host", "username", "password") + keyring_backend = None port = 993 ssl = True diff --git a/i3pystatus/modsde.py b/i3pystatus/modsde.py index ff5f9b0..f1eae4f 100644 --- a/i3pystatus/modsde.py +++ b/i3pystatus/modsde.py @@ -24,6 +24,7 @@ class ModsDeChecker(IntervalModule): "color", "username", "password" ) required = ("username", "password") + keyring_backend = None color = "#7181fe" offset = 0 diff --git a/i3pystatus/pyload.py b/i3pystatus/pyload.py index f960114..67d77bf 100644 --- a/i3pystatus/pyload.py +++ b/i3pystatus/pyload.py @@ -32,6 +32,7 @@ class pyLoad(IntervalModule): "username", "password" ) required = ("username", "password") + keyring_backend = None address = "http://127.0.0.1:8000" format = "{captcha} {progress_all:.1f}% {speed:.1f} kb/s" diff --git a/i3pystatus/reddit.py b/i3pystatus/reddit.py index f448ecd..374555e 100644 --- a/i3pystatus/reddit.py +++ b/i3pystatus/reddit.py @@ -48,6 +48,7 @@ class Reddit(IntervalModule): format = "[{submission_subreddit}] {submission_title} ({submission_domain})" username = "" password = "" + keyring_backend = None subreddit = "" sort_by = "hot" color = "#FFFFFF" diff --git a/i3pystatus/whosonlocation.py b/i3pystatus/whosonlocation.py index dad46dc..6147945 100644 --- a/i3pystatus/whosonlocation.py +++ b/i3pystatus/whosonlocation.py @@ -71,6 +71,7 @@ class WOL(IntervalModule): 'email', 'password' ) + keyring_backend = None color_on_site = '#00FF00' color_off_site = '#ff0000'