summaryrefslogtreecommitdiff
path: root/dotbot/dispatcher.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/dispatcher.py')
-rw-r--r--dotbot/dispatcher.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/dotbot/dispatcher.py b/dotbot/dispatcher.py
index 5218aa1..c3c7fe8 100644
--- a/dotbot/dispatcher.py
+++ b/dotbot/dispatcher.py
@@ -3,9 +3,6 @@ from .executor import Executor
from .messenger import Messenger
class Dispatcher(object):
- PLUGIN_CLASS = Executor
- PLUGIN_DIR = 'dotbot/executor'
-
def __init__(self, base_directory):
self._log = Messenger()
self._set_base_directory(base_directory)
@@ -17,7 +14,7 @@ class Dispatcher(object):
if os.path.exists(path):
self._base_directory = path
else:
- raise DispatchError('Nonexistant base directory')
+ raise DispatchError('Nonexistent base directory')
def dispatch(self, tasks):
success = True