Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release_17.01' into backport-har…
Browse files Browse the repository at this point in the history
…dening-17.05
  • Loading branch information
natefoo committed Oct 17, 2017
2 parents 66820a4 + 54d3994 commit 9241c9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/grt.py
Expand Up @@ -111,10 +111,10 @@ def main(argv):
print('Loading GRT ini...')
try:
with open(args.config) as f:
config_dict = yaml.load(f)
config_dict = yaml.safe_load(f)
except Exception:
with open(sample_config) as f:
config_dict = yaml.load(f)
config_dict = yaml.safe_load(f)

# set to 0 by default
if 'last_job_id_sent' not in config_dict:
Expand Down

0 comments on commit 9241c9e

Please sign in to comment.