diff options
Diffstat (limited to 'src/leap')
-rw-r--r-- | src/leap/crypto/leapkeyring.py | 3 | ||||
-rw-r--r-- | src/leap/gui/tests/integration/fake_user_signup.py | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/leap/crypto/leapkeyring.py b/src/leap/crypto/leapkeyring.py index 394142db..bb0ca147 100644 --- a/src/leap/crypto/leapkeyring.py +++ b/src/leap/crypto/leapkeyring.py @@ -9,7 +9,8 @@ import keyring # No, seriously. # We're affected by this **bug** -# https://bitbucket.org/kang/python-keyring-lib/issue/65/dbusexception-method-opensession-with +# https://bitbucket.org/kang/python-keyring-lib/ +# issue/65/dbusexception-method-opensession-with # so using the gnome keyring does not seem feasible right now. # I thought this was the next best option to store secrets in plain sight. diff --git a/src/leap/gui/tests/integration/fake_user_signup.py b/src/leap/gui/tests/integration/fake_user_signup.py index ee8e6ead..e46ff349 100644 --- a/src/leap/gui/tests/integration/fake_user_signup.py +++ b/src/leap/gui/tests/integration/fake_user_signup.py @@ -68,5 +68,3 @@ class request_handler(BaseHTTPRequestHandler): if __name__ == "__main__": server = HTTPServer((HOST, PORT), request_handler) server.serve_forever() - - |