Skip to content

Commit

Permalink
fixed yaml.safe_load
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam R. Rivers committed Dec 14, 2017
1 parent 8a347a6 commit 0c78b63
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vica/vica_cli.py
Expand Up @@ -5,7 +5,6 @@
"""

import argparse
import os
import sys
import logging
import ast
Expand Down Expand Up @@ -204,7 +203,7 @@ def main():

try:
with open(args.config) as cf:
config = yaml.save_load(cf)
config = yaml.safe_load(cf)
except:
print("Could not parse the configuration file.")
raise SystemExit(1)
Expand Down

0 comments on commit 0c78b63

Please sign in to comment.