Major rewrite for more modularity and maintanability

This commit is contained in:
Fabio Manganiello 2017-11-03 04:08:47 +01:00
commit bbb8bd9020
6 changed files with 136 additions and 24 deletions
lib/plugins/shell

View file

@ -18,7 +18,7 @@ class ShellPlugin(Plugin):
except subprocess.CalledProcessError as e:
error = e.output
return output, error
return [output, error]
# vim:sw=4:ts=4:et: