Merge pull request #766 from michalroxorpl/enable_scroll_in_shell

Add code to enable scrolling of shell module output
This commit is contained in:
tobi-wan-kenobi 2021-02-26 18:12:18 +01:00 committed by GitHub
commit da7734d81f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,6 +54,7 @@ class Module(core.module.Module):
def set_output(self, value): def set_output(self, value):
self.__output = value self.__output = value
@core.decorators.scrollable
def get_output(self, _): def get_output(self, _):
return self.__output return self.__output