Skip to content

Commit f173a1f

Browse files
committed
Fix issue #190 -- error caused by unicode within docstrings
1 parent 7d3b57d commit f173a1f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

mindboggle/features/sulci.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def extract_sulci(labels_file, folds_or_file, hemi, min_boundary=1,
3131
3232
This function assigns vertices in a fold to a sulcus in one of two cases.
3333
In the first case, vertices whose labels are in only one label pair in
34-
the fold are assigned to the label pairs sulcus if they are connected
34+
the fold are assigned to the label pair's sulcus if they are connected
3535
through similarly labeled vertices to the boundary between the two labels.
3636
In the second case, the segment_regions function propagates labels from
3737
label borders to vertices whose labels are in multiple label pairs in the
@@ -492,4 +492,4 @@ def extract_sulci(labels_file, folds_or_file, hemi, min_boundary=1,
492492
# ============================================================================
493493
if __name__ == "__main__":
494494
import doctest
495-
doctest.testmod(verbose=True) # py.test --doctest-modules
495+
doctest.testmod(verbose=True) # py.test --doctest-modules

mindboggle/mio/tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def write_shape_stats(labels_or_file=[], sulci=[], fundi=[],
2828
There can be thousands of vertices in a single feature such as a gyrus,
2929
sulcus, or fundus, and for per-vertex shape measures, it makes sense to
3030
characterize their collective shape as a distribution of shape values.
31-
Mindboggles stats_per_label function generates tables of summary
31+
Mindboggle's stats_per_label function generates tables of summary
3232
statistical measures for these distributions, and includes the shape
3333
measures computed on cortical features as well.
3434

mindboggle/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.3.7'
1+
__version__ = '1.3.8'

0 commit comments

Comments
 (0)