From 8d2b8229990a5257504f747a48dfb067cdc72e99 Mon Sep 17 00:00:00 2001 From: HeshamTB Date: Sat, 18 Apr 2020 17:18:58 +0300 Subject: [PATCH] Fixed list output. Signed-off-by: HeshamTB --- rsa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsa.py b/rsa.py index a43751b..db2c834 100755 --- a/rsa.py +++ b/rsa.py @@ -242,7 +242,7 @@ def listKeys(): if key[D] == 0: check = "".strip() else: check = '\u2713' - print("{} {}\n".format(key[ID], check)) + print("{} {}\n".format(key[ID], check).strip()) def exportKey(keyFileName): key = readKeyFile(keyFileName)