aboutsummaryrefslogtreecommitdiffstats
path: root/warmachine/connections/base.py
diff options
context:
space:
mode:
authorjason2016-08-18 19:30:35 -0600
committerjason2016-08-18 19:30:35 -0600
commit4518daba36678f52330513ec1fec82a44340fa81 (patch)
treef5a95fa686516f1898c7ec66b44ad2ad583bbc95 /warmachine/connections/base.py
parenta427cd070d2246264e555b3d4779ebde8acd2e08 (diff)
downloadwarmachine-ng-4518daba36678f52330513ec1fec82a44340fa81.tar.gz
warmachine-ng-4518daba36678f52330513ec1fec82a44340fa81.zip
Remove the hard-coded config file path
- added a dynamic config file path
Diffstat (limited to 'warmachine/connections/base.py')
-rw-r--r--warmachine/connections/base.py3
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
5class Connection(object): 5class 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