Skip to content
This repository has been archived by the owner on Mar 28, 2022. It is now read-only.

Commit

Permalink
Fix string formatting typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lukassnoek committed Jan 11, 2019
1 parent 22bd938 commit 7f3e0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bidsify/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def run_cmd():
args.config_file = op.join(op.dirname(__file__), 'data', 'spinoza_cfg.yml')

if not op.isfile(args.config_file):
raise ValueError("Config-file %s does not exist!")
raise ValueError("Config-file %s does not exist!" % args.config_file)

if args.docker:
run_from_docker(cfg=args.config_file, in_dir=args.directory,
Expand Down

0 comments on commit 7f3e0f0

Please sign in to comment.