From 1792ad15e671bae2e63a15e134cad977758333cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Haitz=20Legarreta=20Gorro=C3=B1o?= Date: Wed, 13 Feb 2019 18:26:23 -0500 Subject: [PATCH] ENH: Add a missing white space between words in string literal. Add a missing white space between words in a string literal split in two lines. --- nibabel/streamlines/trk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nibabel/streamlines/trk.py b/nibabel/streamlines/trk.py index 629673e943..7ff80dc59f 100644 --- a/nibabel/streamlines/trk.py +++ b/nibabel/streamlines/trk.py @@ -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"