diff options
| author | jason | 2012-07-21 16:20:21 -0600 |
|---|---|---|
| committer | jason | 2012-07-21 16:20:21 -0600 |
| commit | ecf83c6b4576138d34ee3056db997a66476a3f29 (patch) | |
| tree | 48486ae033e4515cd1144d1ef0a9a433ddbb3b40 /wmd/actions/__init__.py | |
| parent | 95413bf63d54eb08ce4fb2dc972559f36551b195 (diff) | |
| download | warmachine-ecf83c6b4576138d34ee3056db997a66476a3f29.tar.gz warmachine-ecf83c6b4576138d34ee3056db997a66476a3f29.zip | |
Added support to dynamically load modules.
Diffstat (limited to 'wmd/actions/__init__.py')
| -rw-r--r-- | wmd/actions/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wmd/actions/__init__.py b/wmd/actions/__init__.py index 03cde4c..d0529eb 100644 --- a/wmd/actions/__init__.py +++ b/wmd/actions/__init__.py | |||
| @@ -1,2 +1,3 @@ | |||
| 1 | class Action(object): | 1 | class Action(object): |
| 2 | pass \ No newline at end of file | 2 | def log(self, msg): |
| 3 | print "-> %s: %s" %(self.__class__.__name__, msg) \ No newline at end of file | ||