diff options
Diffstat (limited to 'warmachine/connections/base.py')
| -rw-r--r-- | warmachine/connections/base.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/warmachine/connections/base.py b/warmachine/connections/base.py index e787e35..56ce108 100644 --- a/warmachine/connections/base.py +++ b/warmachine/connections/base.py | |||
| @@ -3,6 +3,9 @@ CONNECTED = 'Connected' | |||
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | class Connection(object): | 5 | class Connection(object): |
| 6 | def __init__(self): | ||
| 7 | self.config_dir = None | ||
| 8 | |||
| 6 | def connect(self, *args, **kwargs): | 9 | def connect(self, *args, **kwargs): |
| 7 | """ | 10 | """ |
| 8 | This is called by the main start method. It should prepare your | 11 | This is called by the main start method. It should prepare your |