We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a1d22d commit 9341356Copy full SHA for 9341356
1 file changed
pyntcloud/io/pcd.py
@@ -23,7 +23,7 @@ def parse_header(lines):
23
for ln in lines:
24
if ln.startswith('#') or len(ln) < 2:
25
continue
26
- match = re.match('(\w+)\s+([\w\s\.]+)', ln)
+ match = re.match(r'(\w+)\s+([\w\s\.]+)', ln)
27
if not match:
28
warnings.warn("warning: can't understand line: %s" % ln)
29
0 commit comments