From 16b22d0d6440955c574744017bb2130e611fabae Mon Sep 17 00:00:00 2001 From: James Tanner Date: Mon, 25 Nov 2013 22:16:04 -0500 Subject: [PATCH] Cleanup debug statements --- library/system/authorized_key | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/system/authorized_key b/library/system/authorized_key index ac9df88cbf..0f83547a7e 100644 --- a/library/system/authorized_key +++ b/library/system/authorized_key @@ -181,7 +181,6 @@ def parseoptions(options): lex.quotes = ["'", '"'] lex.whitespace_split = True opt_parts = list(lex) - open("/tmp/awx.log", "a").write("opt_parts: %s\n" % opt_parts) #options_list = options.strip().split(",") options_list = opt_parts @@ -195,7 +194,6 @@ def parseoptions(options): arg = option val = None options_dict[arg] = val.replace('"', '').replace("'", "") - open("/tmp/awx.log", "a").write("options_dict: %s\n" % options_dict) return options_dict def parsekey(raw_key):