From: Gilles DAVID Date: Fri, 31 Mar 2017 08:21:07 +0000 (+0200) Subject: [PY3] Fix tab/space mix X-Git-Tag: V9_0_0~10^2~8 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=378ee2c7a6c96cef891756918b5e7e431dd53718;p=modules%2Fparavis.git [PY3] Fix tab/space mix --- diff --git a/src/Macro/annotate_groups.py b/src/Macro/annotate_groups.py index 8f0bd018..c1a4cf2d 100644 --- a/src/Macro/annotate_groups.py +++ b/src/Macro/annotate_groups.py @@ -243,9 +243,9 @@ if data.GetDataObjectType() == vtkDataObjectTypes.GetTypeIdFromClassName("vtkMul # Check that PointSprite plugin is available if hasattr(representation, "MaxPixelSize"): - activeRepresentation = 'Point Sprite' - if representation.MaxPixelSize == 64: - representation.MaxPixelSize = 8 + activeRepresentation = 'Point Sprite' + if representation.MaxPixelSize == 64: + representation.MaxPixelSize = 8 else: activeRepresentation = 'Points'