From 4a703cef899ab5a644a6b19993fdedc02f315dc8 Mon Sep 17 00:00:00 2001 From: Joe Subbiani Date: Wed, 28 Jul 2021 09:59:25 +0100 Subject: [PATCH] Remove commented out old code When making a modified function I commented out the previous code in case I needed to use some of it, and forgot to remove it. This has now been resolved Signed-off-by: Joe Subbiani --- tests/translate_ciphers.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/translate_ciphers.py b/tests/translate_ciphers.py index 5f9a5e384..2f1543c04 100755 --- a/tests/translate_ciphers.py +++ b/tests/translate_ciphers.py @@ -98,18 +98,6 @@ def translate_ossl(m_cipher): return m_cipher def format_ciphersuite_names(mode, ciphers): - #ciphers = ciphers.split() - #t_ciphers = [] - #if mode == "g": - # for i in ciphers: - # t_ciphers.append(translate_gnutls(i)) - #elif mode == "o": - # for i in ciphers: - # t_ciphers.append(translate_ossl(i)) - #else: - # print("Incorrect use of argument 1, should be either \"g\" or \"o\"") - # exit(1) - #return " ".join(t_ciphers) try: t = {"g": translate_gnutls, "o": translate_ossl}[mode] return " ".join(t(c) for c in ciphers.split())