diff options
Diffstat (limited to 'base/module.py')
-rw-r--r-- | base/module.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/base/module.py b/base/module.py index 19b89ca..898d49c 100644 --- a/base/module.py +++ b/base/module.py @@ -21,3 +21,10 @@ class Module(object): """ Our parent class for all command modules """ def close(self): raise NotImplementedError + + def __call__(self, *args): + '''This is needed for those command line calls that have no target + + TODO: This is a bloody stupid hack that should be taken out back and shot + ''' + return |