summaryrefslogtreecommitdiff
path: root/dotbot/dispatcher.py
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2020-01-03 16:46:19 -0500
committerAnish Athalye <me@anishathalye.com>2020-01-03 16:46:19 -0500
commitec8498ffb88d43c7d0648033d3d758ebb96a9378 (patch)
treed0f4443ea7f55931a9df52e6a36c51cadd340fba /dotbot/dispatcher.py
parent3fcc13d803f4f0190d997f71f3af693ecef3e4c5 (diff)
parent320d5d0123b045fe922cf576d8d65e2db0517910 (diff)
Merge branch 'ypid/add/link_real_path_option'
Diffstat (limited to 'dotbot/dispatcher.py')
-rw-r--r--dotbot/dispatcher.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotbot/dispatcher.py b/dotbot/dispatcher.py
index d1a4f95..36eac02 100644
--- a/dotbot/dispatcher.py
+++ b/dotbot/dispatcher.py
@@ -10,8 +10,8 @@ class Dispatcher(object):
self._load_plugins()
def _setup_context(self, base_directory):
- path = os.path.abspath(os.path.realpath(
- os.path.expanduser(base_directory)))
+ path = os.path.abspath(
+ os.path.expanduser(base_directory))
if not os.path.exists(path):
raise DispatchError('Nonexistent base directory')
self._context = Context(path)