From 9243a11e0797ee8c0e2a13397cc36c4831d78fe8 Mon Sep 17 00:00:00 2001 From: flifloo Date: Wed, 22 May 2019 16:53:37 +0200 Subject: [PATCH] Remove stupid comment --- yubikey.py | 1 - 1 file changed, 1 deletion(-) diff --git a/yubikey.py b/yubikey.py index ab17817..52c3301 100644 --- a/yubikey.py +++ b/yubikey.py @@ -9,7 +9,6 @@ while True: id = ids[inp[:12]] with shelve.open("Settings.conf") as settings: client = Yubico(id, settings["keys"][id], api_urls=('http://localhost/wsapi/2.0/verify',)) - #client = Yubico(1, "QMho+Y4mtsY+KbCYu1gRKtDtwAM=", api_urls=('http://localhost/wsapi/2.0/verify',)) client.verify(inp) except KeyboardInterrupt: break