Removed all debug statements

This commit is contained in:
ProDigySML
2019-01-31 23:31:12 -08:00
parent 956734a1b7
commit 7b9ea75629

View File

@@ -62,9 +62,6 @@ class InputHelper(object):
@staticmethod
def _replace_variable_for_commands(commands, variable, replacements):
tmp_commands = set()
print(commands)
print(variable)
print(replacements)
for replacement in replacements:
for command in commands:
@@ -193,8 +190,6 @@ class InputHelper(object):
if arguments.output:
final_commands = InputHelper._replace_variable_for_commands(final_commands, "_output_", [arguments.output])
# output.terminal(Level.VERBOSE, command, "Added after processing")
return final_commands