Skip to content

Commit

Permalink
ENH: Add a missing white space between words in string literal.
Browse files Browse the repository at this point in the history
Add a missing white space between words in a string literal split in two
lines.
  • Loading branch information
jhlegarreta committed Feb 13, 2019
1 parent ad0b13f commit 1792ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nibabel/streamlines/trk.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ def _read_header(fileobj):
# http://trackvis.org/blog/forum/diffusion-toolkit-usage/interpretation-of-track-point-coordinates
if header[Field.VOXEL_ORDER] == b"":
msg = ("Voxel order is not specified, will assume 'LPS' since"
"it is Trackvis software's default.")
" it is Trackvis software's default.")
warnings.warn(msg, HeaderWarning)
header[Field.VOXEL_ORDER] = b"LPS"

Expand Down

0 comments on commit 1792ad1

Please sign in to comment.