Skip to content

Commit

Permalink
Fix string substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Aug 9, 2016
1 parent a297a04 commit fd3c875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/deps/resolvers/conda.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_option(name):
# warning is related to conda problem discussed in https://github.com/galaxyproject/galaxy/issues/2537, remove when that is resolved
conda_prefix_warning_length = 50
if len(conda_prefix) >= conda_prefix_warning_length:
log.warning('Conda install prefix ({}) is long ({} characters), this can cause problems with package installation, consider setting a shorter prefix (conda_prefix in galaxy.ini)')
log.warning("Conda install prefix '%s' is %d characters long, this can cause problems with package installation, consider setting a shorter prefix (conda_prefix in galaxy.ini)" % (conda_prefix, len(conda_prefix)))

condarc_override = get_option("condarc_override")
if condarc_override is None:
Expand Down

0 comments on commit fd3c875

Please sign in to comment.