Move the text renderer to cli directory.

This commit is contained in:
Mike Auty
2018-04-15 00:15:50 +01:00
parent 8e5291ecb4
commit fbc8a9ce12
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ import volatility.plugins
from volatility import framework
from volatility.framework import automagic, constants, contexts, interfaces
from volatility.framework.configuration import requirements
from volatility.framework.renderers import text
from volatility.cli import text_renderer
# Make sure we log everything
@@ -211,7 +211,7 @@ class CommandLine(interfaces.plugins.FileConsumerInterface):
constructed.set_file_consumer(self)
# Construct and run the plugin
text.QuickTextRenderer().render(constructed.run())
text_renderer.QuickTextRenderer().render(constructed.run())
def consume_file(self, filedata: interfaces.plugins.FileInterface):
"""Consumes a file as produced by a plugin"""