Skip to content

Commit

Permalink
Merge pull request #118 from oracc/development
Browse files Browse the repository at this point in the history
Corrected JAR path when trying to save config locally.
  • Loading branch information
Raquel Alegre authored Jun 10, 2016
2 parents 7020400 + b8d549c commit edaeb1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/nammu/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def get_yaml_config():
# In Unix getResource returns the path with prefix "file:" but in
# Windows prefix is "jar:file:"
path_to_jar = str(config_file_url).split('file:')[1]
path_to_jar = path_to_jar.replace('!{}'.format(yaml_path), '')
path_to_jar = path_to_jar.split('!')[0]

path_to_config = get_log_path(yaml_filename)

Expand Down

0 comments on commit edaeb1f

Please sign in to comment.