Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--io_mesh_ply/import_ply.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_ply/import_ply.py b/io_mesh_ply/import_ply.py
index 9cf5df63..5d4f8244 100644
--- a/io_mesh_ply/import_ply.py
+++ b/io_mesh_ply/import_ply.py
@@ -35,7 +35,7 @@ class element_spec(object):
def load(self, format, stream):
if format == b'ascii':
- stream = re.split(b'\s+', stream.readline())
+ stream = stream.readline().split()
return [x.load(format, stream) for x in self.properties]
def index(self, name):