Skip to content

Commit

Permalink
Fix for aforementioned config-file loading issue. Tests are now green.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gareth MacLeod committed Jul 15, 2019
1 parent dda9f9c commit f6fb406
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gryphon/execution/lib/config_helper.py
Expand Up @@ -88,6 +88,8 @@ def get_conf_filename_from_strategy_name(strategy_name):

if strategy_name[-4:] == '.pyx':
conf_filename = '%s.conf' % strategy_name[:-4]
elif strategy_name[-3:] == '.py':
conf_filename = '%s.conf' % strategy_name[:-3]
else:
# Builtin strategies are not specified with a suffix.
conf_filename = '%s.conf' % strategy_name
Expand Down

0 comments on commit f6fb406

Please sign in to comment.