Skip to content

Commit

Permalink
Fix string startswith call.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed Jan 31, 2015
1 parent 6c1baf5 commit bebb708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/qipipe
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def main(argv=sys.argv):
inputs, opts = _parse_arguments()

# Break out the logging options.
log_opts = {k: opts.pop(k) for k in opts if k.beginswith('log')}
log_opts = {k: opts.pop(k) for k in opts if k.startswith('log')}
# Configure the logger.
command.configure_log('qipipe', log_opts)
# Set the Nipype log directory environment variable before importing
Expand Down

0 comments on commit bebb708

Please sign in to comment.