summaryrefslogtreecommitdiff
path: root/dotbot/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/config.py')
-rw-r--r--dotbot/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotbot/config.py b/dotbot/config.py
index a6ee9da..9ecf9ac 100644
--- a/dotbot/config.py
+++ b/dotbot/config.py
@@ -8,7 +8,7 @@ class ConfigReader(object):
def _read(self, config_file_path):
try:
with open(config_file_path) as fin:
- data = yaml.load(fin)
+ data = yaml.safe_load(fin)
return data
except Exception as e:
msg = string.indent_lines(str(e))