Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
Fix string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianMitchL committed Nov 3, 2016
1 parent a41cd68 commit ed4f9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def validate_yaml(ctx, yamllintrc='.yamllint', filename='strings.yml'):
Use yamllint to check for errors and enforce a markup standard for the strings YAML file.
By default this will use the '.yamllint' config file to validate 'strings.yml'.
"""
ctx.run('yamllint --config-file %s %s' % yamllintrc, filename)
ctx.run('yamllint --config-file %s %s' % (yamllintrc, filename))


@task(help={
Expand Down

0 comments on commit ed4f9c6

Please sign in to comment.